瀏覽代碼

1.6 VM should mean 'is15VMOrGreater' ! pr164384

tags/V1_5_3_final
aclement 17 年之前
父節點
當前提交
2a540e3451
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      util/src/org/aspectj/util/LangUtil.java

+ 1
- 1
util/src/org/aspectj/util/LangUtil.java 查看文件

@@ -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;
}
}

Loading…
取消
儲存