Skip to content

Commit 1fbc68f

Browse files
committed
Fix comments and names
1 parent 0ee47aa commit 1fbc68f

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

src/test/java/io/github/classgraph/features/EnumTest.java

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,9 @@ private static enum MyEnum {
1717
A, B, C;
1818
}
1919

20-
/**
21-
* Test records (JDK 14+).
22-
*
23-
* @throws Exception
24-
* the exception
25-
*/
20+
/** Test */
2621
@Test
27-
public void recordJar() throws Exception {
22+
public void enumConsts() throws Exception {
2823
try (ScanResult scanResult = new ClassGraph().acceptClasses(MyEnum.class.getName()).enableAllInfo()
2924
.scan()) {
3025
assertThat(scanResult.getAllEnums().size() == 1);

0 commit comments

Comments
 (0)