Skip to content

Commit

Permalink
Add 1 to mol indices in SubStructureMatch.toString
Browse files Browse the repository at this point in the history
  • Loading branch information
olas committed May 20, 2010
1 parent f17adb8 commit 4b3cf9c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -33,7 +33,7 @@ public SubStructureMatch(String name, int resultStatus) {
public String toString() {
String ret="SubstructureMatch: Name=" + getName() + ", Matching atoms: ";
for (Integer i : atomNumbers){
ret=ret+ i + ",";
ret=ret+ (i+1) + ",";
}
return ret;
}
Expand Down

0 comments on commit 4b3cf9c

Please sign in to comment.