/hg/release/icedtea6-1.8: Removed unncessary debug and trace output

dbhole at icedtea.classpath.org dbhole at icedtea.classpath.org
Mon Apr 12 14:30:24 PDT 2010


changeset d28780c35948 in /hg/release/icedtea6-1.8
details: http://icedtea.classpath.org/hg/release/icedtea6-1.8?cmd=changeset;node=d28780c35948
author: Deepak Bhole <dbhole at redhat.com>
date: Mon Apr 12 17:20:51 2010 -0400

	Removed unncessary debug and trace output


diffstat:

3 files changed, 13 insertions(+), 6 deletions(-)
ChangeLog                                                |    8 ++++++++
plugin/icedteanp/IcedTeaNPPlugin.cc                      |    1 -
plugin/icedteanp/java/sun/applet/PluginAppletViewer.java |   10 +++++-----

diffs (74 lines):

diff -r 0a24b64134e6 -r d28780c35948 ChangeLog
--- a/ChangeLog	Mon Apr 12 22:40:15 2010 +0200
+++ b/ChangeLog	Mon Apr 12 17:20:51 2010 -0400
@@ -1,3 +1,11 @@ 2010-04-12  Matthias Klose  <doko at ubuntu
+2010-04-12  Deepak Bhole <dbhole at redhat.com>
+
+	* plugin/icedteanp/IcedTeaNPPlugin.cc (ITNP_New): Removed debug printf
+	statement that didn't belong there.
+	* plugin/icedteanp/java/sun/applet/PluginAppletViewer.java
+	(createPanel): Don't print stack traces on InterruptedException.
+	(handleMessage): Same.
+
 2010-04-12  Matthias Klose  <doko at ubuntu.com>
 
 	PR icedtea/461
diff -r 0a24b64134e6 -r d28780c35948 plugin/icedteanp/IcedTeaNPPlugin.cc
--- a/plugin/icedteanp/IcedTeaNPPlugin.cc	Mon Apr 12 22:40:15 2010 +0200
+++ b/plugin/icedteanp/IcedTeaNPPlugin.cc	Mon Apr 12 17:20:51 2010 -0400
@@ -269,7 +269,6 @@ ITNP_New (NPMIMEType pluginType, NPP ins
   NPVariant member_ptr;
   browser_functions.getvalue(instance, NPNVWindowNPObject, &window_ptr);
   identifier = browser_functions.getstringidentifier("document");
-  printf("Looking for %p %p %p (%s)\n", instance, window_ptr, identifier, "document");
   if (!browser_functions.hasproperty(instance, window_ptr, identifier))
   {
 	printf("%s not found!\n", "document");
diff -r 0a24b64134e6 -r d28780c35948 plugin/icedteanp/java/sun/applet/PluginAppletViewer.java
--- a/plugin/icedteanp/java/sun/applet/PluginAppletViewer.java	Mon Apr 12 22:40:15 2010 +0200
+++ b/plugin/icedteanp/java/sun/applet/PluginAppletViewer.java	Mon Apr 12 17:20:51 2010 -0400
@@ -184,7 +184,7 @@ import com.sun.jndi.toolkit.url.UrlUtil;
                   Thread.sleep(50);
                   wait += 50;
               } catch (InterruptedException ie) {
-                  ie.printStackTrace();
+                  // just wait
               }
          }
          
@@ -196,7 +196,7 @@ import com.sun.jndi.toolkit.url.UrlUtil;
                  Thread.sleep(50);
                  PluginDebug.debug("Waiting for applet to initialize...");
              } catch (InterruptedException ie) {
-                 ie.printStackTrace();
+                 // just wait
              }
          }
 
@@ -629,7 +629,7 @@ import com.sun.jndi.toolkit.url.UrlUtil;
                               Thread.sleep(50);
                               wait += 50;
                           } catch (InterruptedException ie) {
-                              ie.printStackTrace();
+                              // just wait
                           }
                      }
 
@@ -674,7 +674,7 @@ import com.sun.jndi.toolkit.url.UrlUtil;
                       Thread.sleep(50);
                       wait += 50;
                   } catch (InterruptedException ie) {
-                      ie.printStackTrace();
+                      // just wait
                   }
              }
              
@@ -747,7 +747,7 @@ import com.sun.jndi.toolkit.url.UrlUtil;
                      Thread.sleep(50);
                      PluginDebug.debug("Waiting for applet to initialize...");
                  } catch (InterruptedException ie) {
-                     ie.printStackTrace();
+                     // just wait
                  }
              }
 



More information about the distro-pkg-dev mailing list