Skip to content

Commit

Permalink
Removed two static fields that are already provided by RingSizeCompar…
Browse files Browse the repository at this point in the history
…ator

Signed-off-by: Rajarshi Guha <rajarshi.guha@gmail.com>
  • Loading branch information
egonw authored and rajarshi committed Jan 24, 2012
1 parent 3cc4232 commit aec7fb3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions src/main/org/openscience/cdk/RingSet.java
Expand Up @@ -40,11 +40,6 @@ public class RingSet extends AtomContainerSet implements Serializable, IRingSet,

private static final long serialVersionUID = 7168431521057961434L;

/** Flag to denote that the set is order with the largest ring first? */
public final static int LARGE_FIRST = 1;
/** Flag to denote that the set is order with the smallest ring first? */
public final static int SMALL_FIRST = 2;

/**
* The constructor.
*
Expand Down
Expand Up @@ -39,7 +39,7 @@ public RingSizeComparatorTest() {

@Test
public void testRingSizeComparator_int() {
RingSizeComparator comp = new RingSizeComparator(RingSet.LARGE_FIRST);
RingSizeComparator comp = new RingSizeComparator(RingSizeComparator.LARGE_FIRST);
Assert.assertNotNull(comp);
}

Expand Down

0 comments on commit aec7fb3

Please sign in to comment.