Skip to content

Commit

Permalink
suppress exception from log
Browse files Browse the repository at this point in the history
  • Loading branch information
datasetutil committed Jul 21, 2015
1 parent 2cfbb99 commit addb8b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/sforce/dataset/DatasetUtilMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -1138,7 +1138,7 @@ public static String getAppversion()
versionProps.load(DatasetUtilMain.class.getClassLoader().getResourceAsStream("version.properties"));
return versionProps.getProperty("datasetutils.version");
} catch (Throwable t) {
t.printStackTrace();
//t.printStackTrace();
}
return "0.0.0";
}
Expand Down

0 comments on commit addb8b0

Please sign in to comment.