]> source.dussan.org Git - aspectj.git/commitdiff
removed erroneous "s" from method name
authoracolyer <acolyer>
Sat, 23 Jul 2005 07:08:10 +0000 (07:08 +0000)
committeracolyer <acolyer>
Sat, 23 Jul 2005 07:08:10 +0000 (07:08 +0000)
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/EclipseFactory.java

index 36d84aced0246ded4536e39b70fb7d90b84a2616..2c2489f94ef7d1580bcd05cea6e9a85a614cea41 100644 (file)
@@ -196,7 +196,7 @@ public class EclipseFactory {
                if (binding instanceof ParameterizedTypeBinding) {
                        if (binding instanceof RawTypeBinding) {
                                // special case where no parameters are specified!
-                               return UnresolvedType.forRawTypeNames(getName(binding));
+                               return UnresolvedType.forRawTypeName(getName(binding));
                        }
                        ParameterizedTypeBinding ptb = (ParameterizedTypeBinding) binding;
                        
@@ -519,7 +519,7 @@ public class EclipseFactory {
                // Deal with the raw/basic type to give us an entry in the world type map
                UnresolvedType simpleTx = null;
                if (binding.isGenericType()) {
-                   simpleTx  = UnresolvedType.forRawTypeNames(getName(binding)); 
+                   simpleTx  = UnresolvedType.forRawTypeName(getName(binding)); 
                } else {
                        simpleTx  = UnresolvedType.forName(getName(binding)); 
                }