Skip to content

Commit

Permalink
Reverted patch 10462, to reenable functionality beyond the scope of C…
Browse files Browse the repository at this point in the history
…omparator<IAtomContainer> (closes #??????, now I only need a tool to offline browse/edit bug reports)

git-svn-id: https://cdk.svn.sourceforge.net/svnroot/cdk/cdk/branches/cdk-1.2.x@12501 eb4e18e3-b210-0410-a6ab-dec725e4b171
  • Loading branch information
egonw committed Oct 1, 2008
1 parent 5324dd1 commit a13d95a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
* @cdk.svnrev $Revision$
*/
@TestClass("org.openscience.cdk.tools.manipulator.AtomContainerComparatorTest")
public class AtomContainerComparator implements Comparator<IAtomContainer> {
public class AtomContainerComparator implements Comparator {

/** Configure LoggingTool */
private LoggingTool logger = new LoggingTool(AtomContainerComparator.class);
Expand Down Expand Up @@ -86,7 +86,7 @@ public AtomContainerComparator() {
* to, or greater than the second.
*/
@TestMethod("testCompare_Object_Object")
public int compare(IAtomContainer o1, IAtomContainer o2) {
public int compare(Object o1, Object o2) {
// Check for nulls
if (o1 == null && o2 == null)
return 0;
Expand Down

0 comments on commit a13d95a

Please sign in to comment.