Browse Source

whitespace

master
Stefan Bodewig 10 years ago
parent
commit
e09e4bbac6
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/main/org/apache/tools/ant/util/JavaEnvUtils.java

+ 3
- 3
src/main/org/apache/tools/ant/util/JavaEnvUtils.java View File

@@ -219,10 +219,10 @@ public final class JavaEnvUtils {
private static void checkForJava9() throws Exception { private static void checkForJava9() throws Exception {
Class<?> clazz = Class.forName("javax.lang.model.SourceVersion"); Class<?> clazz = Class.forName("javax.lang.model.SourceVersion");
clazz.getDeclaredField("RELEASE_9"); clazz.getDeclaredField("RELEASE_9");
}
}




/**
/**
* Returns the version of Java this class is running under. * Returns the version of Java this class is running under.
* This number can be used for comparisons; it will always be * This number can be used for comparisons; it will always be
* @return the version of Java as a number 10x the major/minor, * @return the version of Java as a number 10x the major/minor,
@@ -425,7 +425,7 @@ public final class JavaEnvUtils {
private static void buildJrePackages() { private static void buildJrePackages() {
jrePackages = new Vector<String>(); jrePackages = new Vector<String>();
switch(javaVersionNumber) { switch(javaVersionNumber) {
case VERSION_1_9:
case VERSION_1_9:
case VERSION_1_8: case VERSION_1_8:
case VERSION_1_7: case VERSION_1_7:
case VERSION_1_6: case VERSION_1_6:


Loading…
Cancel
Save