aboutsummaryrefslogtreecommitdiffstats
path: root/util/src/test/java/org/aspectj
diff options
context:
space:
mode:
authorLars Grefer <eclipse@larsgrefer.de>2020-08-13 23:21:11 +0200
committerLars Grefer <eclipse@larsgrefer.de>2020-08-13 23:21:11 +0200
commitd7ba05ce26dd8f72c1d0695ece2cb03d035e3cf9 (patch)
treeb0ca80a1154a73ca8ed1d5d4cf175c2682af6fce /util/src/test/java/org/aspectj
parent4f027bd94fe71756894f13a4a82123eda4f28b98 (diff)
downloadaspectj-d7ba05ce26dd8f72c1d0695ece2cb03d035e3cf9.tar.gz
aspectj-d7ba05ce26dd8f72c1d0695ece2cb03d035e3cf9.zip
Remove checks for old Java Versions
Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
Diffstat (limited to 'util/src/test/java/org/aspectj')
-rw-r--r--util/src/test/java/org/aspectj/util/LangUtilTest.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/util/src/test/java/org/aspectj/util/LangUtilTest.java b/util/src/test/java/org/aspectj/util/LangUtilTest.java
index 545cdd904..87b976957 100644
--- a/util/src/test/java/org/aspectj/util/LangUtilTest.java
+++ b/util/src/test/java/org/aspectj/util/LangUtilTest.java
@@ -101,9 +101,10 @@ public class LangUtilTest extends TestCase {
// }
public void testVersion() {
- assertTrue(LangUtil.isOnePointThreeVMOrGreater()); // min vm now - floor may change
- if (LangUtil.is15VMOrGreater()) {
- assertTrue(LangUtil.is1dot4VMOrGreater());
+ assertTrue(LangUtil.is18VMOrGreater()); // min vm now - floor may change
+ if (LangUtil.is11VMOrGreater()) {
+ assertTrue(LangUtil.is19VMOrGreater());
+ assertTrue(LangUtil.is10VMOrGreater());
}
}