Skip to content

Commit

Permalink
EDIT: Removed debug output that was left in the code unintentionally.
Browse files Browse the repository at this point in the history
  • Loading branch information
tsaglam committed Mar 7, 2017
1 parent d88bf12 commit 436b8c3
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/main/java/jce/codegen/WrapperGenerator.xtend
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,6 @@ final class WrapperGenerator {
def private static String getSuperClass(EClass eClass) {
for (superType : eClass.ESuperTypes) {
if (!superType.interface) {
System.err.println("ECLASS " + eClass.name + " IS " +
PACKAGE.append(getPackage(superType), superType.name)) // TODO
return PACKAGE.append(getPackage(superType), superType.name)
}
}
Expand All @@ -117,7 +115,6 @@ final class WrapperGenerator {
package = PACKAGE.append(current.name, package)
current = current.ESuperPackage
}
System.err.println("PACKAGE OF " + eClass.name + " IS " + package) // TODO
return PACKAGE.cutParent(package)
}

Expand Down

0 comments on commit 436b8c3

Please sign in to comment.