ASF Bugzilla – Attachment 24717 Details for
Bug 48398
Lock fields should be final
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch fields that should be final
OrderInterceptor.patch (text/plain), 929 bytes, created by
Sebb
on 2009-12-16 19:40:25 UTC
(
hide
)
Description:
Patch fields that should be final
Filename:
MIME Type:
Creator:
Sebb
Created:
2009-12-16 19:40:25 UTC
Size:
929 bytes
patch
obsolete
>Index: java/org/apache/catalina/tribes/group/interceptors/OrderInterceptor.java >=================================================================== >--- java/org/apache/catalina/tribes/group/interceptors/OrderInterceptor.java (revision 891404) >+++ java/org/apache/catalina/tribes/group/interceptors/OrderInterceptor.java (working copy) >@@ -61,8 +61,8 @@ > private boolean forwardExpired = true; > private int maxQueue = Integer.MAX_VALUE; > >- ReentrantReadWriteLock inLock = new ReentrantReadWriteLock(true); >- ReentrantReadWriteLock outLock= new ReentrantReadWriteLock(true); >+ final ReentrantReadWriteLock inLock = new ReentrantReadWriteLock(true); >+ final ReentrantReadWriteLock outLock= new ReentrantReadWriteLock(true); > > public void sendMessage(Member[] destination, ChannelMessage msg, InterceptorPayload payload) throws ChannelException { > if ( !okToProcess(msg.getOptions()) ) {
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 48398
:
24714
| 24717