diff options
author | Andy Clement <aclement@pivotal.io> | 2016-12-09 09:46:10 -0800 |
---|---|---|
committer | Andy Clement <aclement@pivotal.io> | 2016-12-09 09:46:10 -0800 |
commit | 3714f91628b7c83e2333895370b7b9a3a160a8a9 (patch) | |
tree | d6ead236b46ca8f86d7b2ab0f01ef6d996b431d4 /weaver5 | |
parent | 90aa179e2c0b2870d8678f8e9948bf631840c93b (diff) | |
download | aspectj-3714f91628b7c83e2333895370b7b9a3a160a8a9.tar.gz aspectj-3714f91628b7c83e2333895370b7b9a3a160a8a9.zip |
fix warnings in build - support .isJava8 option in buildV1_8_10
Diffstat (limited to 'weaver5')
-rw-r--r-- | weaver5/java5-testsrc/org/aspectj/weaver/tools/Java15PointcutExpressionTest.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/weaver5/java5-testsrc/org/aspectj/weaver/tools/Java15PointcutExpressionTest.java b/weaver5/java5-testsrc/org/aspectj/weaver/tools/Java15PointcutExpressionTest.java index 9b155df3e..f651a2f29 100644 --- a/weaver5/java5-testsrc/org/aspectj/weaver/tools/Java15PointcutExpressionTest.java +++ b/weaver5/java5-testsrc/org/aspectj/weaver/tools/Java15PointcutExpressionTest.java @@ -105,11 +105,11 @@ public class Java15PointcutExpressionTest extends TestCase { PointcutExpression pexpr = null; ShadowMatch match = null; - Method n = test.AnnoValues.class.getMethod("none",null); - Method r = test.AnnoValues.class.getMethod("redMethod",null); - Method g = test.AnnoValues.class.getMethod("greenMethod",null); - Method b = test.AnnoValues.class.getMethod("blueMethod",null); - Method d = test.AnnoValues.class.getMethod("defaultMethod",null); + Method n = test.AnnoValues.class.getMethod("none"); + Method r = test.AnnoValues.class.getMethod("redMethod"); + Method g = test.AnnoValues.class.getMethod("greenMethod"); + Method b = test.AnnoValues.class.getMethod("blueMethod"); + Method d = test.AnnoValues.class.getMethod("defaultMethod"); pexpr = p.parsePointcutExpression("execution(@test.A3(test.Color.RED) public void *(..))"); assertTrue("Should match", pexpr.matchesMethodExecution(n).neverMatches()); // default value RED |