Skip to content

Commit 7a9fc68

Browse files
johnmayegonw
authored andcommitted
Generics fixup
1 parent 6316a00 commit 7a9fc68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/test-standard/src/test/java/org/openscience/cdk/graph/invariant/CanonicalLabelerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public void testStabilityAfterRoundtrip() throws Exception {
142142
while (atoms1.hasNext()) {
143143
IAtom atom1 = atoms1.next();
144144
IAtom atom2 = atoms2.next();
145-
Assert.assertEquals(atom1.getProperty(InvPair.CANONICAL_LABEL), atom2.getProperty(InvPair.CANONICAL_LABEL));
145+
Assert.assertEquals(atom1.<Long>getProperty(InvPair.CANONICAL_LABEL), atom2.<Long>getProperty(InvPair.CANONICAL_LABEL));
146146
}
147147
}
148148

0 commit comments

Comments
 (0)