Skip to content

Commit

Permalink
removing stdout
Browse files Browse the repository at this point in the history
Change-Id: I48d2443a03616c8b993853405f7652b4e5d79129
Signed-off-by: Egon Willighagen <egonw@users.sourceforge.net>
  • Loading branch information
johnmay authored and egonw committed Mar 24, 2013
1 parent 18b53bf commit 4948888
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ private void setAtomTypeData() throws Exception {
double q0 = new Double(sq0).doubleValue();
data.add(new Double(q0));
}catch (NumberFormatException nfe3) {
System.out.println("Charge: Malformed Number due to:"+nfe3);
System.err.println("Charge: Malformed Number due to:"+nfe3);
}
parameterSet.put(key, data);
}
Expand Down Expand Up @@ -541,7 +541,6 @@ public void readParameterSets() throws Exception {
ins.close();
insvdW.close();
} catch (IOException e) {
System.err.println(e.toString());
throw new IOException("There was a problem parsing the mmff94 forcefield");
}

Expand All @@ -564,7 +563,6 @@ public void readParameterSets() throws Exception {
insDFSB.close();
//logger.debug("insDFSB closed");
} catch (IOException e) {
System.err.println(e.toString());
throw new IOException("There was a problem parsing the Default Stretch-Bend Parameters (mmffdfsb.par)");
}
}
Expand Down

0 comments on commit 4948888

Please sign in to comment.