Fix potential null pointer error

This commit is contained in:
deannagarcia 2023-02-24 15:02:53 -08:00 committed by GitHub
parent 075677e415
commit ae97c826f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,12 +40,12 @@ public class JavaVersionTest {
@Test
public void testJavaVersion() throws Exception {
String exp = System.getenv("KOKORO_JAVA_VERSION");
// Java 8's version is read as "1.8"
if(exp.equals("8")) exp = "1.8";
if(exp == null || exp.isEmpty()) {
System.err.println("No kokoro java version found, skipping check");
return;
}
// Java 8's version is read as "1.8"
if(exp.equals("8")) exp = "1.8";
String version = System.getProperty("java.version");
assertWithMessage("Expected Java " + exp + " but found Java " + version)
.that(version.startsWith(exp))