Skip to content

Commit

Permalink
Fixed adding all descriptors to the qsar-descriptors.set file by
Browse files Browse the repository at this point in the history
using the correct number of chars to skip (@cdk.set length is 8 not 11).
  • Loading branch information
egonw committed Sep 20, 2011
1 parent 88070ac commit a75eece
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/net/sf/cdk/tools/MakeJavafilesFiles.java
Expand Up @@ -214,7 +214,7 @@ public String[] getModuleAndSet(File file) {
index = line.indexOf("@cdk.set");
String set = "";
if (index != -1) {
index += 11;
index += 8;
// skip the first chars
while (Character.isWhitespace(line.charAt(index))) index++;
while (index < line.length() &&
Expand Down

0 comments on commit a75eece

Please sign in to comment.