Skip to content

Commit 5514159

Browse files
authored
Added spaces (#494)
Co-authored-by: Johan Kragt <[email protected]>
1 parent 59dc3a5 commit 5514159

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/openrewrite/staticanalysis/AnnotateNullableMethods.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ public String getDisplayName() {
5151
@Override
5252
public String getDescription() {
5353
return "Add `@Nullable` to non-private methods that may return `null`. " +
54-
"By default `org.jspecify.annotations.Nullable` is used, but through the `nullableAnnotationClass` option a custom annotation can be provided." +
55-
"When providing a custom `nullableAnnotationClass` that annotation should be meta annotated with `@Target(TYPE_USE)`." +
54+
"By default `org.jspecify.annotations.Nullable` is used, but through the `nullableAnnotationClass` option a custom annotation can be provided. " +
55+
"When providing a custom `nullableAnnotationClass` that annotation should be meta annotated with `@Target(TYPE_USE)`. " +
5656
"This recipe scans for methods that do not already have a `@Nullable` annotation and checks their return " +
5757
"statements for potential null values. It also identifies known methods from standard libraries that may " +
5858
"return null, such as methods from `Map`, `Queue`, `Deque`, `NavigableSet`, and `Spliterator`. " +

0 commit comments

Comments
 (0)