Skip to content

Commit cc730d4

Browse files
committed
...
1 parent 9f29e35 commit cc730d4

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/test/java/com/fasterxml/classmate/ResolvedTypeTest.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
public class ResolvedTypeTest extends BaseTest
1414
{
15-
// For [Issue#16]
15+
// For [classmate#16]
1616

1717
static class Foo16 extends Bar16 { }
1818

@@ -35,11 +35,10 @@ public void testCanCreateSubtype() {
3535
assertFalse(arrayType.canCreateSubtype(String[].class));
3636
assertFalse(arrayType.canCreateSubtype(CharBuffer[].class));
3737
assertFalse(arrayType.canCreateSubtype(String.class));
38-
3938
}
4039

4140
@Test
42-
public void testtypeParametersFor() {
41+
public void testTypeParametersFor() {
4342
ResolvedObjectType stringType = ResolvedObjectType.create(String.class, null, null, null);
4443
assertNull(stringType.typeParametersFor(CharBuffer.class));
4544
}
@@ -113,7 +112,7 @@ public void testAccessors() {
113112
assertEquals(0, type.getStaticFields().size());
114113
}
115114

116-
// For [Issue#16]
115+
// For [classmate#16]
117116
@Test
118117
public void testIssue16()
119118
{

0 commit comments

Comments
 (0)