[jboss-dev-forums] [Design of Messaging on JBoss (Messaging/JBoss)] - Can it be a final static?
gaohoward
do-not-reply at jboss.com
Fri Jan 9 09:56:30 EST 2009
This class only has one static member
| public class JMSClientVMIdentifier
| {
| public static String instance = GUIDGenerator.generateGUID();
| }
|
I think it should be final like
| public class JMSClientVMIdentifier
| {
| public static String instance = GUIDGenerator.generateGUID();
| }
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4200593#4200593
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4200593
More information about the jboss-dev-forums
mailing list