Skip to content
This repository has been archived by the owner on Jan 19, 2023. It is now read-only.

Commit

Permalink
Flip writeData default. Still in progress and trakes too much disk
Browse files Browse the repository at this point in the history
space.
  • Loading branch information
tparker-usgs committed Jul 1, 2015
1 parent 600c197 commit 585c304
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<description>USGS Swarm Build File</description>

<property name="package" value="gov.usgs.volcanoes.pensive"/>
<property name="version" value="1.1.6"/>
<property name="version" value="1.1.7"/>
<property name="jarfile" value="pensive-${version}.jar" />
<property name="classpath" location="../USGS/contrib/jtransforms-2.4.jar;../USGS/lib/swarm.jar;../USGS/lib/plot.jar;../USGS/lib/util.jar;../USGS/contrib/freemarker.jar;../USGS/contrib/JSAP-2.1.jar;../USGS/contrib/slf4j-api-1.7.1.jar;../USGS/contrib/slf4j-log4j12-1.7.1.jar" />
<property name="source" location="." />
Expand Down
2 changes: 1 addition & 1 deletion src/gov/usgs/volcanoes/pensive/Channel.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class Channel {
private static final Logger LOGGER = LoggerFactory.getLogger(Channel.class);

/** do I write data files? */
public static final boolean DEFAULT_WRITE_DATA = true;
public static final boolean DEFAULT_WRITE_DATA = false;

/** Default format for data file suffix */
public static final String DEFAULT_DATA_FILE_SUFFIX_FORMAT = "_yyyyMMdd";
Expand Down

0 comments on commit 585c304

Please sign in to comment.