From 382f01641506700d7757af22324a070ce6be959d Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Mon, 26 Mar 2012 18:12:58 -0600 Subject: [PATCH] remove debug logging --- classpath/java-io.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/classpath/java-io.cpp b/classpath/java-io.cpp index c1373a3c58..9b7f83286f 100644 --- a/classpath/java-io.cpp +++ b/classpath/java-io.cpp @@ -405,7 +405,6 @@ 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) {