Skip to content

Commit

Permalink
remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
xpenatan committed Sep 2, 2024
1 parent 91208fe commit f3fa09a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ public static boolean startProcess (File directory, String[] commands) {
String command = commands[i];
System.out.println("Param: " + command);
}
System.out.println();

final Process process = new ProcessBuilder(commands)
.redirectErrorStream(true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -439,8 +439,6 @@ private void generateCPPClass(IDLClass idlClass, ClassOrInterfaceDeclaration cla
String code = header + cppClass;

classDeclaration.getConstructors().get(0).setBlockComment(code);

System.out.println();
}

private String generateSetupCallbackMethod(IDLClass idlClass, MethodDeclaration callbackDeclaration, ArrayList<Pair<IDLMethod, Pair<MethodDeclaration, MethodDeclaration>>> methods) {
Expand Down

0 comments on commit f3fa09a

Please sign in to comment.