/hg/icedtea-web: Fixed comment in last commit

aazores at icedtea.classpath.org aazores at icedtea.classpath.org
Thu Jun 12 20:52:03 UTC 2014


changeset 0d6f97d838b7 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=0d6f97d838b7
author: Andrew Azores <aazores at redhat.com>
date: Thu Jun 12 16:51:32 2014 -0400

	Fixed comment in last commit

	2014-06-12  Andrew Azores  <aazores at redhat.com>

	    * netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditor.java
	    (showChangesSavedDialog, showCouldNotSaveDialog): fixed comment to explain
	    an issue with JVM exiting, rather than GC


diffstat:

 ChangeLog                                                         |  6 ++++++
 netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditor.java |  4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

diffs (34 lines):

diff -r dd5a97f2b37f -r 0d6f97d838b7 ChangeLog
--- a/ChangeLog	Thu Jun 12 16:48:55 2014 -0400
+++ b/ChangeLog	Thu Jun 12 16:51:32 2014 -0400
@@ -1,3 +1,9 @@
+2014-06-12  Andrew Azores  <aazores at redhat.com>
+
+	* netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditor.java
+	(showChangesSavedDialog, showCouldNotSaveDialog): fixed comment to explain
+	an issue with JVM exiting, rather than GC
+
 2014-06-12  Andrew Azores  <aazores at redhat.com>
 
 	Reduced usage of weak references in PolicyEditor
diff -r dd5a97f2b37f -r 0d6f97d838b7 netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditor.java
--- a/netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditor.java	Thu Jun 12 16:48:55 2014 -0400
+++ b/netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditor.java	Thu Jun 12 16:51:32 2014 -0400
@@ -1371,7 +1371,7 @@
     private void showChangesSavedDialog() {
         // This dialog is often displayed when closing the editor, and so PolicyEditor
         // may already be disposed when this dialog appears. Give a weak reference so
-        // that this dialog doesn't prevent GC of the editor
+        // that this dialog doesn't prevent the JVM from exiting
         SwingUtilities.invokeLater(new Runnable() {
             @Override
             public void run() {
@@ -1386,7 +1386,7 @@
     private void showCouldNotSaveDialog() {
         // This dialog is often displayed when closing the editor, and so PolicyEditor
         // may already be disposed when this dialog appears. Give a weak reference so
-        // that this dialog doesn't prevent GC of the editor
+        // that this dialog doesn't prevent the JVM from exiting
         SwingUtilities.invokeLater(new Runnable() {
             @Override
             public void run() {


More information about the distro-pkg-dev mailing list