changeset 2694:fd59a2d43134

8062593: remove debug print statements Reviewed-by: vromero
author jjg
date Thu, 30 Oct 2014 17:31:22 -0700
parents c36403059804
children 9fd9a50e7994
files src/jdk.compiler/share/classes/com/sun/tools/javac/file/JavacFileManager.java
diffstat 1 files changed, 0 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/src/jdk.compiler/share/classes/com/sun/tools/javac/file/JavacFileManager.java	Thu Oct 30 16:08:43 2014 -0700
+++ b/src/jdk.compiler/share/classes/com/sun/tools/javac/file/JavacFileManager.java	Thu Oct 30 17:31:22 2014 -0700
@@ -130,10 +130,6 @@
         if (register)
             context.put(JavaFileManager.class, this);
         setContext(context);
-        if (System.getProperty("show.fm.open.close") != null)
-            System.err.println("JavacFileManager.open " + this.hashCode());
-        if (System.getProperty("trace.fm.open.close") != null)
-            Thread.dumpStack();
     }
 
     /**
@@ -575,10 +571,6 @@
      */
     @DefinedBy(Api.COMPILER)
     public void close() {
-        if (System.getProperty("show.fm.open.close") != null)
-            System.err.println("JavacFileManager.close " + this.hashCode());
-        if (System.getProperty("trace.fm.open.close") != null)
-            Thread.dumpStack();
         for (Iterator<Archive> i = archives.values().iterator(); i.hasNext(); ) {
             Archive a = i.next();
             i.remove();