소스 검색

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…
취소
저장