[OFBiz] SVN: r7081 - trunk/applications/product/webapp/facility/WEB-INF/actions/shipment

jacopo@svn.ofbiz.org jacopo at svn.ofbiz.org
Mon Mar 27 03:33:43 CST 2006


Author: jacopo
Date: 2006-03-27 03:33:35 -0600 (Mon, 27 Mar 2006)
New Revision: 7081

Modified:
   trunk/applications/product/webapp/facility/WEB-INF/actions/shipment/FindShipment.bsh
Log:
Fixed possible NPE when no shipments are found.

Modified: trunk/applications/product/webapp/facility/WEB-INF/actions/shipment/FindShipment.bsh
===================================================================
--- trunk/applications/product/webapp/facility/WEB-INF/actions/shipment/FindShipment.bsh	2006-03-27 08:33:20 UTC (rev 7080)
+++ trunk/applications/product/webapp/facility/WEB-INF/actions/shipment/FindShipment.bsh	2006-03-27 09:33:35 UTC (rev 7081)
@@ -162,12 +162,14 @@
     } else {
         shipmentList = new ArrayList();
         shipmentListSize = 0;
+        highIndex = 0;
+        lowIndex = 0;
     }
 
     context.put("shipmentList", shipmentList);
     context.put("listSize", shipmentListSize);
     context.put("highIndex", highIndex);
-	context.put("lowIndex", lowIndex);
+    context.put("lowIndex", lowIndex);
 }
 
 // =============== Prepare the Option Data for the Find Form =================



More information about the Svn mailing list