Skip to content

Commit

Permalink
Got rid of some debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
rajarshi committed Apr 4, 2010
1 parent 9bd0490 commit 6079160
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/main/org/openscience/cdk/qsar/DescriptorEngine.java
Expand Up @@ -654,7 +654,6 @@ public static List<String> getDescriptorClassNameByPackage(String packageName, S

for (String jar : jars) {
logger.debug("Looking in " + jar);
if (jar.indexOf("bond") != -1) System.out.println("jar = " + jar);
JarFile jarFile;
try {
jarFile = new JarFile(jar);
Expand All @@ -663,7 +662,6 @@ public static List<String> getDescriptorClassNameByPackage(String packageName, S
JarEntry jarEntry = (JarEntry) enumeration.nextElement();
if (jarEntry.toString().endsWith(".class")) {
String tmp = jarEntry.toString().replace('/', '.').replaceAll("\\.class", "");
if (tmp.indexOf("qsar") != -1) System.out.println("tmp = " + tmp);
if (!(tmp.indexOf(packageName) != -1)) continue;
if (tmp.indexOf('$') != -1) continue;
if (tmp.indexOf("Test") != -1) continue;
Expand Down

0 comments on commit 6079160

Please sign in to comment.