[cvs] eforum commit by mtraum: static field should be accessed in a static

JCorporate Ltd jcorp at jcorp2.servlets.net
Tue Nov 9 09:29:14 PST 2004


Log Message:
-----------
static field should be accessed in a static way

Modified Files:
--------------
    eforum/src/WEB-INF/src/com/jcorporate/eforum/job:
        SendNotice.java

Revision Data
-------------
Index: SendNotice.java
===================================================================
RCS file: /home/javacorp/.cvs/expresso/eforum/src/WEB-INF/src/com/jcorporate/eforum/job/SendNotice.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -Lsrc/WEB-INF/src/com/jcorporate/eforum/job/SendNotice.java -Lsrc/WEB-INF/src/com/jcorporate/eforum/job/SendNotice.java -u -r1.8 -r1.9
--- src/WEB-INF/src/com/jcorporate/eforum/job/SendNotice.java
+++ src/WEB-INF/src/com/jcorporate/eforum/job/SendNotice.java
@@ -82,7 +82,7 @@
         try {
             StringBuffer mailMsg = new StringBuffer("");
             JobQueue jq = getJobQueueEntry();
-            String userName = jq.getField(jq.FLD_UID);
+            String userName = jq.getField(JobQueue.FLD_UID);
             String subject = jq.getParamValue("Subject");
 
             if (subject == null) {


More information about the cvs mailing list