From 9a50e6958790e85956a553c9f8f66d52f0064312 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Sat, 17 Mar 2012 22:42:15 -0600 Subject: [PATCH] remove debug logging --- classpath/java-io.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/classpath/java-io.cpp b/classpath/java-io.cpp index c1373a3c58..d08601a465 100644 --- a/classpath/java-io.cpp +++ b/classpath/java-io.cpp @@ -405,11 +405,9 @@ Java_java_io_File_createNewFile(JNIEnv* e, jclass, jstring path) bool result = false; string_t chars = getChars(e, path); if (chars) { - fprintf(stderr, "create file \"%s\"\n", chars); if (not exists(chars)) { int fd = OPEN(chars, O_CREAT | O_WRONLY | O_EXCL, 0600); if (fd == -1) { - fprintf(stderr, "errno %d\n", errno); if (errno != EEXIST) { throwNewErrno(e, "java/io/IOException"); }