From 5d7e22a90f270663e5de0906e4ed18d89e1d4bd1 Mon Sep 17 00:00:00 2001 From: Hadrien Mary Date: Sat, 1 Dec 2018 09:57:42 -0500 Subject: [PATCH] Remove debug print --- setup.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/setup.py b/setup.py index 3a92284..d11567f 100644 --- a/setup.py +++ b/setup.py @@ -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')