Procházet zdrojové kódy

1.6 VM should mean 'is15VMOrGreater' ! pr164384

tags/V1_5_3_final
aclement před 17 roky
rodič
revize
2a540e3451
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      util/src/org/aspectj/util/LangUtil.java

+ 1
- 1
util/src/org/aspectj/util/LangUtil.java Zobrazit soubor

@@ -97,7 +97,7 @@ public class LangUtil {
if (vm==null) vm = System.getProperty("java.vm.version");
if (vm.startsWith("1.3")) {
is14VMOrGreater = false;
} else if (vm.startsWith("1.5")) {
} else if (vm.startsWith("1.5") || vm.startsWith("1.6")) {
is15VMOrGreater = true;
}
}

Načítá se…
Zrušit
Uložit