Skip to content

Commit

Permalink
fix for date math, issue #6
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmerz committed Nov 23, 2015
1 parent 338ddba commit 6e8822b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ node_modules
*.pri
*.dss
.dssWriterParams
dssWriter.jar
2 changes: 1 addition & 1 deletion java/src/edu/ucdavis/watershed/Dss.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
public class Dss {

@SuppressWarnings("deprecation")
public static Date EPOCH = new Date(1900, 0, 0);
public static Date EPOCH = new Date(1900, 1, 0);

public static HecDss open(String file) throws Exception {
return HecDss.open(file);
Expand Down

0 comments on commit 6e8822b

Please sign in to comment.