diff options
author | acolyer <acolyer> | 2005-11-27 18:45:06 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-11-27 18:45:06 +0000 |
commit | c3bef72dcac14398332abde6dfd5498eec24b042 (patch) | |
tree | 929eb53c4ea125601e466cb0a9b996753604db60 /tests/java5/reflection | |
parent | 3ce492be631f9f598bbf9d1e045e4d9637885bf1 (diff) | |
download | aspectj-c3bef72dcac14398332abde6dfd5498eec24b042.tar.gz aspectj-c3bef72dcac14398332abde6dfd5498eec24b042.zip |
updated tests and fix for pr116229
Diffstat (limited to 'tests/java5/reflection')
-rw-r--r-- | tests/java5/reflection/ReflectOnAjcCompiledPointcuts.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/java5/reflection/ReflectOnAjcCompiledPointcuts.java b/tests/java5/reflection/ReflectOnAjcCompiledPointcuts.java index 539e0f767..ae81ab9db 100644 --- a/tests/java5/reflection/ReflectOnAjcCompiledPointcuts.java +++ b/tests/java5/reflection/ReflectOnAjcCompiledPointcuts.java @@ -3,7 +3,8 @@ import org.aspectj.weaver.tools.*; public class ReflectOnAjcCompiledPointcuts { public static void main(String[] args) { - PointcutParser p = new PointcutParser(); + PointcutParser p = PointcutParser.getPointcutParserSupportingAllPrimitivesAndUsingSpecifiedClassloaderForResolution(ReflectOnAjcCompiledPointcuts.class.getClassLoader()); +// PointcutParser p = PointcutParser.getPointcutParserSupportingAllPrimitivesAndUsingContextClassloaderForResolution(); PointcutExpression pe = null; // pe = p.parsePointcutExpression("PointcutLibrary.propertyAccess()"); // pe = p.parsePointcutExpression("PointcutLibrary.propertyUpdate()"); |