Skip to content

Commit ed05e19

Browse files
committed
remove unintended org.intellij.lang.annotations.Language import
1 parent 6b87513 commit ed05e19

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/org/openrewrite/java/testing/junit5/UpdateTestAnnotation.java

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

18-
import org.intellij.lang.annotations.Language;
1918
import org.openrewrite.ExecutionContext;
2019
import org.openrewrite.Recipe;
2120
import org.openrewrite.TreeVisitor;
@@ -72,7 +71,7 @@ public J.MethodDeclaration visitMethodDeclaration(J.MethodDeclaration method, Ex
7271
assert lambda != null;
7372
lambda = lambda.withType(JavaType.ShallowClass.build("org.junit.jupiter.api.function.Executable"));
7473

75-
@Language("java") String[] assertionShims = {
74+
String[] assertionShims = {
7675
"package org.junit.jupiter.api.function;" +
7776
"public interface Executable {" +
7877
" void execute() throws Throwable;" +

0 commit comments

Comments
 (0)