|
From: Jan S. <st...@us...> - 2002-07-14 18:05:00
|
Update of /cvsroot/javaprofiler/module/net/sourceforge/javaprofiler/module/nodes
In directory usw-pr-cvs1:/tmp/cvs-serv31589
Modified Files:
ListenerNode.java SessionNode.java
Log Message:
Resource bundle is static, not instance field.
Index: ListenerNode.java
===================================================================
RCS file: /cvsroot/javaprofiler/module/net/sourceforge/javaprofiler/module/nodes/ListenerNode.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** ListenerNode.java 16 May 2002 11:58:45 -0000 1.1
--- ListenerNode.java 14 Jul 2002 18:04:57 -0000 1.2
***************
*** 42,46 ****
public class ListenerNode extends AbstractNode implements ConListenerCookie {
private ConListener listener;
! private ResourceBundle bundle=NbBundle.getBundle(ListenerNode.class);
public ListenerNode(ConListener listener) {
--- 42,46 ----
public class ListenerNode extends AbstractNode implements ConListenerCookie {
private ConListener listener;
! private static ResourceBundle bundle=NbBundle.getBundle(ListenerNode.class);
public ListenerNode(ConListener listener) {
***************
*** 98,101 ****
--- 98,104 ----
/*
* $Log$
+ * Revision 1.2 2002/07/14 18:04:57 stolis
+ * Resource bundle is static, not instance field.
+ *
* Revision 1.1 2002/05/16 11:58:45 stolis
* Listener node class.
Index: SessionNode.java
===================================================================
RCS file: /cvsroot/javaprofiler/module/net/sourceforge/javaprofiler/module/nodes/SessionNode.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** SessionNode.java 26 Feb 2002 00:56:24 -0000 1.3
--- SessionNode.java 14 Jul 2002 18:04:57 -0000 1.4
***************
*** 42,46 ****
public class SessionNode extends AbstractNode implements SessionCookie {
private Session session;
! private ResourceBundle bundle=NbBundle.getBundle(SessionNode.class);
public SessionNode(Session session) {
--- 42,46 ----
public class SessionNode extends AbstractNode implements SessionCookie {
private Session session;
! private static ResourceBundle bundle=NbBundle.getBundle(SessionNode.class);
public SessionNode(Session session) {
***************
*** 156,159 ****
--- 156,162 ----
/*
* $Log$
+ * Revision 1.4 2002/07/14 18:04:57 stolis
+ * Resource bundle is static, not instance field.
+ *
* Revision 1.3 2002/02/26 00:56:24 stolis
* Refactoring of create snapshot action.
|