/* * Copyright (c) 2013-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ package codetoanalyze.java.eradicate; import android.annotation.SuppressLint; import java.net.URL; import javax.annotation.Nullable; public class ParameterNotNullable { boolean field = false; ParameterNotNullable() { testPrimitive(field); } void testPrimitive(boolean f) {} void test(String s) { int n = s.length(); } void testN(@Nullable String s) { int n = s != null ? s.length() : 0; } void callNull() { String s = null; test(s); } @SuppressLint("ERADICATE_PARAMETER_NOT_NULLABLE") void callNullSuppressed() { String s = null; test(s); } void callNullable(@Nullable String s) { test(s); } void callNullOK() { String s = null; testN(s); } void callNullableOK(@Nullable String s) { testN(s); } private ParameterNotNullable(@Nullable String s) {} class Builder { ParameterNotNullable getEradicateParameterNotNullable() { return new ParameterNotNullable(null); } } public @Nullable String testSystemGetPropertyArgument() { String s = System.getProperty(null); return s; } @Nullable String testSystemGetenvBad() { return System.getenv(null); } static @Nullable URL testClassGetResourceArgument(Class cls) { return cls.getResource(null); } void threeParameters(String s1, String s2, String s3) {} void testThreeParameters() { String s = ""; threeParameters(null, s, s); threeParameters(s, null, s); threeParameters(s, s, null); } class ConstructorCall { ConstructorCall(int x, String s) {} ConstructorCall() { this(3, ""); // OK } ConstructorCall(int x) { this(3, null); // NPE } } void indirectSignatureLookupOk(SomeClass c) { c.acceptsNullableParameter(null); } } interface SomeInterface { void acceptsNullableParameter(@Nullable Object object); } abstract class SomeClass implements SomeInterface {}