From e3574fc2e386cb29ce0cda9320ef132231d307cb Mon Sep 17 00:00:00 2001 From: Tim te Beek Date: Sun, 24 Nov 2024 22:57:01 +0100 Subject: [PATCH] Apply suggestions from code review --- .../migrate/ArrayStoreExceptionToTypeNotPresentException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/openrewrite/java/migrate/ArrayStoreExceptionToTypeNotPresentException.java b/src/main/java/org/openrewrite/java/migrate/ArrayStoreExceptionToTypeNotPresentException.java index 016d610de..8c6eacc28 100644 --- a/src/main/java/org/openrewrite/java/migrate/ArrayStoreExceptionToTypeNotPresentException.java +++ b/src/main/java/org/openrewrite/java/migrate/ArrayStoreExceptionToTypeNotPresentException.java @@ -36,7 +36,7 @@ public String getDisplayName() { @Override public String getDescription() { - return "This recipe replaces catch blocks for ArrayStoreException around getAnnotation() with TypeNotPresentException to ensure compatibility with Java 11+."; + return "Replace catch blocks for `ArrayStoreException` around `getAnnotation()` with `TypeNotPresentException` to ensure compatibility with Java 11+."; } @Override