Remove debug print

This commit is contained in:
Hadrien Mary 2018-12-01 09:57:42 -05:00 committed by Peter Badida
parent 657c7fef24
commit 5d7e22a90f
1 changed files with 0 additions and 2 deletions

View File

@ -89,8 +89,6 @@ def find_javac(possible_homes):
def compile_native_invocation_handler(*possible_homes):
'''Find javac and compile NativeInvocationHandler.java.'''
javac = find_javac(possible_homes)
print("*********")
print(javac)
subprocess.check_call([
javac, '-target', '1.6', '-source', '1.6',
join('jnius', 'src', 'org', 'jnius', 'NativeInvocationHandler.java')