Compare strings better

java8
deannagarcia 2 years ago committed by GitHub
parent 5ffb29d684
commit 075677e415
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      java/internal/JavaVersionTest.java

@ -41,12 +41,7 @@ public class JavaVersionTest {
public void testJavaVersion() throws Exception {
String exp = System.getenv("KOKORO_JAVA_VERSION");
// Java 8's version is read as "1.8"
if(exp == "8") {
System.out.println("The version was 8");
exp = "1.8";
} else {
System.out.println("The version was not 8, it was: " + exp);
}
if(exp.equals("8")) exp = "1.8";
if(exp == null || exp.isEmpty()) {
System.err.println("No kokoro java version found, skipping check");
return;

Loading…
Cancel
Save