potential NPE

This commit is contained in:
anton 2023-09-04 13:19:28 +03:00
parent f624b6343f
commit 84b7c5d0a4

View file

@ -0,0 +1,11 @@
package org.springframework.samples.petclinic;
import org.springframework.lang.Nullable;
public class ExperimentsForPullRequests {
public static void foo(@Nullable String s){
System.out.println("String length: " + s.length());
}
}