Skip to content

Commit

Permalink
Removed redundant System.out statement.
Browse files Browse the repository at this point in the history
Signed-off-by: Egon Willighagen <egonw@users.sourceforge.net>
  • Loading branch information
Stephan Beisken authored and egonw committed Feb 3, 2014
1 parent 65a1a0a commit 0eefcdc
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/main/org/openscience/cdk/qsar/DescriptorEngine.java
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,6 @@ private IDescriptor instantiate(Class<? extends IDescriptor> c) throws
InstantiationException {
for(Constructor constructor : c.getConstructors()){
Class<?>[] params = constructor.getParameterTypes();
System.out.println(c.getSimpleName() + Arrays.toString(params));
if(params.length == 0){
return (IDescriptor) constructor.newInstance();
} else if(params.length == 1
Expand Down

0 comments on commit 0eefcdc

Please sign in to comment.