]> source.dussan.org Git - aspectj.git/commitdiff
(no commit message)
authoraclement <aclement>
Wed, 4 Jun 2008 21:28:01 +0000 (21:28 +0000)
committeraclement <aclement>
Wed, 4 Jun 2008 21:28:01 +0000 (21:28 +0000)
weaver/src/org/aspectj/weaver/ResolvedMemberImpl.java
weaver/src/org/aspectj/weaver/UnresolvedType.java

index e36f4bd77dead0e9f0c032b4f0d56ea09b0c4881..a4db3746f3d7c2cb3d3ce2afec0f9c9234d1431c 100644 (file)
@@ -981,7 +981,7 @@ public class ResolvedMemberImpl extends MemberImpl implements IHasPosition, Anno
           }
           
           // 'declaring' type
-          r.append(getGenericReturnType().toString());
+          r.append(getGenericReturnType().toDebugString());
           r.append(' ');
           
           // name
@@ -997,7 +997,7 @@ public class ResolvedMemberImpl extends MemberImpl implements IHasPosition, Anno
          if (params.length != 0) {
                   for (int i=0, len = params.length; i < len; i++) {
              if (i>0) r.append(", ");
-                        r.append(params[i].toString());
+                        r.append(params[i].toDebugString());
                         if (parameterNamesExist) r.append(" ").append(parameterNames[i]);
                   }
          }
index b65e69c983f2d6d6a68ca1f453ef6391e76b721f..441eca3533bf361d85ab2855b341409970c7a91e 100644 (file)
@@ -542,6 +542,10 @@ public class UnresolvedType implements Traceable, TypeVariableDeclaringElement {
     public String toString() {
         return getName(); // + " - " + getKind();
     }
+    
+    public String toDebugString() {
+       return getName();
+    }
 
     // ---- requires worlds