summaryrefslogtreecommitdiffstats
path: root/org.aspectj.ajdt.core
diff options
context:
space:
mode:
authoraclement <aclement>2005-07-28 10:38:51 +0000
committeraclement <aclement>2005-07-28 10:38:51 +0000
commit7ea7217e9868e9221579041c74386d138292968e (patch)
tree3519dee7a345d78fac4dc6554282de891d15c505 /org.aspectj.ajdt.core
parent6ddfe8a87e00c5d034c8fdc5c467b17464bbde8a (diff)
downloadaspectj-7ea7217e9868e9221579041c74386d138292968e.tar.gz
aspectj-7ea7217e9868e9221579041c74386d138292968e.zip
ajh02 initials removed !
Diffstat (limited to 'org.aspectj.ajdt.core')
-rw-r--r--org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AsmHierarchyBuilder.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AsmHierarchyBuilder.java b/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AsmHierarchyBuilder.java
index 519140189..fd8d8a7a4 100644
--- a/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AsmHierarchyBuilder.java
+++ b/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AsmHierarchyBuilder.java
@@ -618,7 +618,7 @@ public class AsmHierarchyBuilder extends ASTVisitor {
protected String genSourceSignature(FieldDeclaration fieldDeclaration) {
StringBuffer output = new StringBuffer();
if (fieldDeclaration.type == null) { // This is an enum value
- output.append(fieldDeclaration.name); // ajh02: the "," or ";" has to be put on by whatever uses the sourceSignature
+ output.append(fieldDeclaration.name); // the "," or ";" has to be put on by whatever uses the sourceSignature
return output.toString();
} else {
FieldDeclaration.printModifiers(fieldDeclaration.modifiers, output);