Skip to content

Commit

Permalink
whitespace fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jonalv authored and egonw committed Jul 28, 2012
1 parent fe466f1 commit 227280e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/org/openscience/cdk/similarity/Tanimoto.java
Original file line number Diff line number Diff line change
Expand Up @@ -250,13 +250,13 @@ public static double method2( ICountFingerprint fp1,
: null;
Integer hash2 = j < fp2.numOfPopulatedbins() ? fp2.getHash(j)
: null;
Integer count1 = i < fp1.numOfPopulatedbins() ? fp1.getCount(i)
: null;
Integer count2 = j < fp2.numOfPopulatedbins() ? fp2.getCount(j)
: null;
Integer count1 = i < fp1.numOfPopulatedbins() ? fp1.getCount(i)
: null;
Integer count2 = j < fp2.numOfPopulatedbins() ? fp2.getCount(j)
: null;

if ( count2 == null || (hash1 != null && hash1 < hash2) ) {
maxSum += count1;
maxSum += count1;
i++;
continue;
}
Expand Down

0 comments on commit 227280e

Please sign in to comment.