File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/test/java/org/openrewrite/staticanalysis Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1717
1818import org .junit .jupiter .api .Test ;
1919import org .openrewrite .DocumentExample ;
20+ import org .openrewrite .Issue ;
2021import org .openrewrite .java .JavaParser ;
2122import org .openrewrite .test .RecipeSpec ;
2223import org .openrewrite .test .RewriteTest ;
@@ -454,8 +455,8 @@ void doSomething() {
454455 );
455456 }
456457
458+ @ Issue ("https://github.com/openrewrite/rewrite-static-analysis/issues/715" )
457459 @ Test
458- @ org .openrewrite .Issue ("https://github.com/openrewrite/rewrite-static-analysis/issues/715" )
459460 void doNotChangeWhenThrownExceptionIsGeneric () {
460461 rewriteRun (
461462 spec -> spec .parser (JavaParser .fromJavaVersion ()),
@@ -465,7 +466,7 @@ void doNotChangeWhenThrownExceptionIsGeneric() {
465466 interface ThrowsGenerics<TE extends Throwable> {
466467 void get() throws TE;
467468 }
468-
469+
469470 class MyService {
470471 void doSomething(ThrowsGenerics<Exception> t) {
471472 try {
You can’t perform that action at this time.
0 commit comments