Skip to content

Commit 436b8c3

Browse files
committed
EDIT: Removed debug output that was left in the code unintentionally.
1 parent d88bf12 commit 436b8c3

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/main/java/jce/codegen/WrapperGenerator.xtend

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,6 @@ final class WrapperGenerator {
102102
def private static String getSuperClass(EClass eClass) {
103103
for (superType : eClass.ESuperTypes) {
104104
if (!superType.interface) {
105-
System.err.println("ECLASS " + eClass.name + " IS " +
106-
PACKAGE.append(getPackage(superType), superType.name)) // TODO
107105
return PACKAGE.append(getPackage(superType), superType.name)
108106
}
109107
}
@@ -117,7 +115,6 @@ final class WrapperGenerator {
117115
package = PACKAGE.append(current.name, package)
118116
current = current.ESuperPackage
119117
}
120-
System.err.println("PACKAGE OF " + eClass.name + " IS " + package) // TODO
121118
return PACKAGE.cutParent(package)
122119
}
123120

0 commit comments

Comments
 (0)