Skip to content

Commit 21f14d4

Browse files
Apply suggestions from code review
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 9483b47 commit 21f14d4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

rewrite-java-tck/src/main/java/org/openrewrite/java/tree/TypeUtilsTest.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
*/
1616
package org.openrewrite.java.tree;
1717

18-
import org.jetbrains.annotations.NotNull;
1918
import org.junit.jupiter.api.Test;
2019
import org.openrewrite.ExecutionContext;
2120
import org.openrewrite.InMemoryExecutionContext;
@@ -1432,9 +1431,9 @@ abstract class ExtT<T> extends CompT<ExtT<T>> {}
14321431
void recursiveTypes() {
14331432
CompT<?> compT;
14341433
CompT<ExtT<Integer>> compExtT;
1435-
ExtT<Integer> extT = new ExtT<Integer>() {
1434+
ExtT<Integer> extT = new ExtT<>() {
14361435
@Override
1437-
public int compareTo(@NotNull TypeUtilsTest.ExtT<Integer> o) {
1436+
public int compareTo(TypeUtilsTest.ExtT<Integer> o) {
14381437
return 0;
14391438
}
14401439
};

0 commit comments

Comments
 (0)