Skip to content

Commit

Permalink
Fixed wrong module assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
rajarshi authored and egonw committed Nov 28, 2010
1 parent 1eb9590 commit 81db713
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
import org.openscience.cdk.exception.CDKException;
import org.openscience.cdk.interfaces.IAtomContainer;
import org.openscience.cdk.smiles.SmilesGenerator;
import sun.reflect.generics.reflectiveObjects.NotImplementedException;

import java.util.BitSet;
import java.util.HashMap;
Expand All @@ -44,8 +43,8 @@
* OpenEye).
*
* @author Rajarshi Guha
* @cdk.module standard
* @cdk.keyword smiles
* @cdk.module smiles
* @cdk.keyword fingerprint
* @cdk.keyword hologram
*/
@TestClass("org.openscience.cdk.fingerprint.LingoFingerprinterTest")
Expand Down Expand Up @@ -73,7 +72,7 @@ public LingoFingerprinter(int q) {
}

public BitSet getFingerprint(IAtomContainer iAtomContainer) throws CDKException {
throw new NotImplementedException();
throw new UnsupportedOperationException();
}

@TestMethod("testFingerprint")
Expand Down

0 comments on commit 81db713

Please sign in to comment.