You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by do...@apache.org on 2008/10/18 01:26:13 UTC

svn commit: r705778 - /ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/stats/ServerHitBin.java

Author: doogie
Date: Fri Oct 17 16:26:12 2008
New Revision: 705778

URL: http://svn.apache.org/viewvc?rev=705778&view=rev
Log:
s/delgator/delegator/

Modified:
    ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/stats/ServerHitBin.java

Modified: ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/stats/ServerHitBin.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/stats/ServerHitBin.java?rev=705778&r1=705777&r2=705778&view=diff
==============================================================================
--- ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/stats/ServerHitBin.java (original)
+++ ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/stats/ServerHitBin.java Fri Oct 17 16:26:12 2008
@@ -112,7 +112,7 @@
     protected static void countHit(String id, int type, HttpServletRequest request, long startTime, long runningTime, GenericValue userLogin,
         GenericDelegator delegator, boolean isOriginal) {
         if (delegator == null) {
-            throw new IllegalArgumentException("The delgator passed to countHit cannot be null");
+            throw new IllegalArgumentException("The delegator passed to countHit cannot be null");
         }
 
         ServerHitBin bin = null;
@@ -226,7 +226,7 @@
     static void countHitSinceStart(String id, int type, long startTime, long runningTime, boolean isOriginal,
         GenericDelegator delegator) {
         if (delegator == null) {
-            throw new IllegalArgumentException("The delgator passed to countHitSinceStart cannot be null");
+            throw new IllegalArgumentException("The delegator passed to countHitSinceStart cannot be null");
         }
 
         ServerHitBin bin = null;
@@ -340,7 +340,7 @@
     public ServerHitBin(String id, int type, boolean limitLength, GenericDelegator delegator) {
         super();
         if (delegator == null) {
-            throw new IllegalArgumentException("The delgator passed to countHitSinceStart cannot be null");
+            throw new IllegalArgumentException("The delegator passed to countHitSinceStart cannot be null");
         }
 
         this.id = id;