Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/classfmt/InnerClassInfo.java')
-rw-r--r--org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/classfmt/InnerClassInfo.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/classfmt/InnerClassInfo.java b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/classfmt/InnerClassInfo.java
index 3cc4f942a1..739916b91e 100644
--- a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/classfmt/InnerClassInfo.java
+++ b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/classfmt/InnerClassInfo.java
@@ -4,13 +4,13 @@ package org.eclipse.jdt.internal.compiler.classfmt;
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
-import org.eclipse.jdt.internal.compiler.env.*;
-
/**
* Describes one entry in the classes table of the InnerClasses attribute.
* See the inner class specification (The class file attribute "InnerClasses").
*/
+import org.eclipse.jdt.internal.compiler.env.*;
+
public class InnerClassInfo extends ClassFileStruct implements IBinaryNestedType {
int innerClassNameIndex = -1;
int outerClassNameIndex = -1;
@@ -109,11 +109,11 @@ public String toString() {
if (getName() != null) {
buffer.append(getName());
}
- buffer.append("\n"/*nonNLS*/);
+ buffer.append("\n");
if (getEnclosingTypeName() != null) {
buffer.append(getEnclosingTypeName());
}
- buffer.append("\n"/*nonNLS*/);
+ buffer.append("\n");
if (getSourceName() != null) {
buffer.append(getSourceName());
}

Back to the top