diff options
author | acolyer <acolyer> | 2005-10-28 08:25:47 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-10-28 08:25:47 +0000 |
commit | 8d479b227be4f8228265f37589b565b78f84d523 (patch) | |
tree | bd75c9fbaf132c9958206f81a8ffe29b19fdec6a /weaver/testsrc | |
parent | 3ad7a2ca28b78973741db19ba78c60f6feb81f43 (diff) | |
download | aspectj-8d479b227be4f8228265f37589b565b78f84d523.tar.gz aspectj-8d479b227be4f8228265f37589b565b78f84d523.zip |
hopefully the last of the array gremlins in the reflection based world...
Diffstat (limited to 'weaver/testsrc')
-rw-r--r-- | weaver/testsrc/org/aspectj/weaver/reflect/ReflectionWorldTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weaver/testsrc/org/aspectj/weaver/reflect/ReflectionWorldTest.java b/weaver/testsrc/org/aspectj/weaver/reflect/ReflectionWorldTest.java index 662d9beb2..ba7f9441d 100644 --- a/weaver/testsrc/org/aspectj/weaver/reflect/ReflectionWorldTest.java +++ b/weaver/testsrc/org/aspectj/weaver/reflect/ReflectionWorldTest.java @@ -27,9 +27,9 @@ public class ReflectionWorldTest extends TestCase { } public void testArrayTypes() { - World world = new ReflectionWorld(); + ReflectionWorld world = new ReflectionWorld(); String[] strArray = new String[1]; - ResolvedType rt = world.resolve(UnresolvedType.forSignature(strArray.getClass().getName())); + ResolvedType rt = world.resolve(strArray.getClass()); assertTrue(rt.isArray()); } |