changeset 931:fdcb91be0d58

Fixing rear deadlock issue ConsoleOutputPane.java: removed (probably) unnecessary synchronization of (refreshPaneBody).
author Jiri Vanek <jvanek@redhat.com>
date Thu, 13 Mar 2014 16:39:04 +0100
parents c20c689ba9ff
children 71a87178ff7e
files ChangeLog netx/net/sourceforge/jnlp/util/logging/ConsoleOutputPane.java
diffstat 2 files changed, 9 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Thu Mar 13 16:34:01 2014 +0100
+++ b/ChangeLog	Thu Mar 13 16:39:04 2014 +0100
@@ -1,8 +1,14 @@
 2014-03-13  Jiri Vanek  <jvanek@redhat.com>
 
-	Fixed apearence of download indicator
+	Fixing rear deadlock issue
+	* netx/net/sourceforge/jnlp/util/logging/ConsoleOutputPane.java: removed
+	(probably) unnecessary synchronization of (refreshPaneBody).
+
+2014-03-13  Jiri Vanek  <jvanek@redhat.com>
+
+	Fixed appearance of download indicator
 	* netx/net/sourceforge/jnlp/runtime/JNLPClassLoader.java: (init) attributes
-	are alowed to access jars only once all resources are downloaded
+	are allowed to access jars only once all resources are downloaded
 
 2014-03-12  Jiri Vanek  <jvanek@redhat.com>
 
--- a/netx/net/sourceforge/jnlp/util/logging/ConsoleOutputPane.java	Thu Mar 13 16:34:01 2014 +0100
+++ b/netx/net/sourceforge/jnlp/util/logging/ConsoleOutputPane.java	Thu Mar 13 16:39:04 2014 +0100
@@ -217,7 +217,7 @@
         });
     }
 
-    private synchronized void refreshPaneBody(final boolean reset) throws BadLocationException, IOException {
+    private void refreshPaneBody(final boolean reset) throws BadLocationException, IOException {
         if (reset) {
             jEditorPane1.setText(model.importList(0));
         } else {