You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by rj...@apache.org on 2009/07/01 20:47:07 UTC

svn commit: r790304 - in /tomcat: container/tc5.5.x/modules/cluster/src/share/org/apache/catalina/cluster/tcp/FastAsyncSocketSender.java current/tc5.5.x/STATUS.txt

Author: rjung
Date: Wed Jul  1 18:47:07 2009
New Revision: 790304

URL: http://svn.apache.org/viewvc?rev=790304&view=rev
Log:
Make new mutex lock in cluster/tcp/FastAsyncSocketSender final as
suggested by sebb.

Improvement of http://svn.apache.org/viewvc?rev=789714&view=rev
Port of http://svn.apache.org/viewvc?rev=789803&view=rev from OACC to tc5.5.x.

No additional changelog entry, because only an implementation improvement to
a change which was applied after the last release and that's already in the changelog.

Modified:
    tomcat/container/tc5.5.x/modules/cluster/src/share/org/apache/catalina/cluster/tcp/FastAsyncSocketSender.java
    tomcat/current/tc5.5.x/STATUS.txt

Modified: tomcat/container/tc5.5.x/modules/cluster/src/share/org/apache/catalina/cluster/tcp/FastAsyncSocketSender.java
URL: http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/modules/cluster/src/share/org/apache/catalina/cluster/tcp/FastAsyncSocketSender.java?rev=790304&r1=790303&r2=790304&view=diff
==============================================================================
--- tomcat/container/tc5.5.x/modules/cluster/src/share/org/apache/catalina/cluster/tcp/FastAsyncSocketSender.java (original)
+++ tomcat/container/tc5.5.x/modules/cluster/src/share/org/apache/catalina/cluster/tcp/FastAsyncSocketSender.java Wed Jul  1 18:47:07 2009
@@ -96,7 +96,7 @@
      * We keep the synchronization independent of the synchronization
      * in the super class DataSender.
      */
-    private Object mutex = new Object();
+    private final Object mutex = new Object();
 
     // ------------------------------------------------------------- Constructor
 

Modified: tomcat/current/tc5.5.x/STATUS.txt
URL: http://svn.apache.org/viewvc/tomcat/current/tc5.5.x/STATUS.txt?rev=790304&r1=790303&r2=790304&view=diff
==============================================================================
--- tomcat/current/tc5.5.x/STATUS.txt (original)
+++ tomcat/current/tc5.5.x/STATUS.txt Wed Jul  1 18:47:07 2009
@@ -60,13 +60,6 @@
   -1: markt - For the common and combined pattern in ALV there is no space between %t and %r
               For the common and combined pattern in ALV the %r has no opening quote, only the closing quote
 
-* Make new mutex lock in cluster/tcp/FastAsyncSocketSender final as
-  suggested by sebb.
-  Improvement of http://svn.apache.org/viewvc?rev=789714&view=rev
-  Port of http://svn.apache.org/viewvc?rev=789803&view=rev from OACC to tc5.5.x.
-  +1: rjung, kkolinko, markt
-  -1:
-
 * Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=47389
   DeltaManager doesn't do session replication if notifySessionListenersOnReplication=false.
   Backport of http://svn.apache.org/viewvc?view=rev&revision=786124 from tc6



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org