Author: jacopoc
Date: Mon Oct 2 08:50:00 2006 New Revision: 452088 URL: http://svn.apache.org/viewvc?view=rev&rev=452088 Log: Removed unused import statements from Java classes. Patch from Peter Goron (OFBIZ-349). Modified: incubator/ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/finaccount/FinAccountServices.java incubator/ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/invoice/InvoiceServices.java incubator/ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/payment/BillingAccountWorker.java incubator/ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/util/UtilAccounting.java incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/ContentManagementServices.java incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/compdoc/CompDocEvents.java incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/data/DataResourceWorker.java incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/data/DataServices.java incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/email/EmailWorker.java incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/view/SimpleContentViewHandler.java incubator/ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/bom/BOMServices.java incubator/ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/jobshopmgt/ProductionRun.java incubator/ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/mrp/InventoryEventPlannedServices.java incubator/ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/mrp/ProposedOrder.java incubator/ofbiz/trunk/applications/marketing/src/org/ofbiz/marketing/marketing/MarketingServices.java incubator/ofbiz/trunk/applications/marketing/src/org/ofbiz/marketing/report/ReportHelper.java incubator/ofbiz/trunk/applications/order/src/org/ofbiz/order/order/OrderServices.java incubator/ofbiz/trunk/applications/order/src/org/ofbiz/order/quote/QuoteServices.java incubator/ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/product/ProductPromoWorker.java incubator/ofbiz/trunk/applications/order/src/org/ofbiz/order/thirdparty/zipsales/ZipSalesServices.java incubator/ofbiz/trunk/applications/party/src/org/ofbiz/party/communication/CommunicationEventServices.java incubator/ofbiz/trunk/applications/pos/src/org/ofbiz/pos/component/Output.java incubator/ofbiz/trunk/applications/pos/src/org/ofbiz/pos/event/ManagerEvents.java incubator/ofbiz/trunk/applications/product/src/org/ofbiz/product/feature/ParametricSearch.java incubator/ofbiz/trunk/applications/product/src/org/ofbiz/product/product/ProductEvents.java incubator/ofbiz/trunk/applications/product/src/org/ofbiz/shipment/shipment/ShipmentEvents.java incubator/ofbiz/trunk/applications/product/src/org/ofbiz/shipment/thirdparty/dhl/DhlServices.java incubator/ofbiz/trunk/framework/base/src/base/org/ofbiz/base/util/UtilFormatOut.java incubator/ofbiz/trunk/framework/datafile/src/org/ofbiz/datafile/DataFile2EntityXml.java incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericEntity.java incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityConditionListBase.java incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityOperator.java incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityWhereString.java incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/model/ModelEntity.java incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/test/EntityTestSuite.java incubator/ofbiz/trunk/framework/service/src/org/ofbiz/service/mail/ServiceMcaUtil.java incubator/ofbiz/trunk/framework/testtools/src/org/ofbiz/testtools/JythonTest.java incubator/ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/event/ServiceMultiEventHandler.java incubator/ofbiz/trunk/framework/webtools/src/org/ofbiz/webtools/WebToolsServices.java incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/fo/FoFormRenderer.java incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/form/ModelForm.java incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/menu/ModelMenuCondition.java incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ModelScreen.java incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ModelScreenCondition.java incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ScreenRenderer.java incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ScreenXmlViewHandler.java incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/tree/ModelTreeCondition.java incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/xml/XmlFormRenderer.java incubator/ofbiz/trunk/framework/workflow/src/org/ofbiz/workflow/WorkflowEngine.java Modified: incubator/ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/finaccount/FinAccountServices.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/finaccount/FinAccountServices.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/finaccount/FinAccountServices.java (original) +++ incubator/ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/finaccount/FinAccountServices.java Mon Oct 2 08:50:00 2006 @@ -19,7 +19,6 @@ import java.sql.Timestamp; import java.util.Map; -import org.ofbiz.base.util.Debug; import org.ofbiz.base.util.UtilDateTime; import org.ofbiz.base.util.UtilMisc; import org.ofbiz.entity.GenericDelegator; Modified: incubator/ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/invoice/InvoiceServices.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/invoice/InvoiceServices.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/invoice/InvoiceServices.java (original) +++ incubator/ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/invoice/InvoiceServices.java Mon Oct 2 08:50:00 2006 @@ -44,13 +44,11 @@ import org.ofbiz.entity.condition.EntityCondition; import org.ofbiz.entity.condition.EntityOperator; import org.ofbiz.entity.condition.EntityExpr; -import org.ofbiz.entity.util.EntityUtil; import org.ofbiz.order.order.OrderReadHelper; import org.ofbiz.product.product.ProductWorker; import org.ofbiz.service.DispatchContext; import org.ofbiz.service.GenericServiceException; import org.ofbiz.service.LocalDispatcher; -import org.ofbiz.service.ModelService; import org.ofbiz.service.ServiceUtil; /** Modified: incubator/ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/payment/BillingAccountWorker.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/payment/BillingAccountWorker.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/payment/BillingAccountWorker.java (original) +++ incubator/ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/payment/BillingAccountWorker.java Mon Oct 2 08:50:00 2006 @@ -25,7 +25,6 @@ import javolution.util.FastList; -import org.ofbiz.accounting.invoice.InvoiceWorker; import org.ofbiz.base.util.Debug; import org.ofbiz.base.util.GeneralException; import org.ofbiz.base.util.UtilDateTime; @@ -33,7 +32,6 @@ import org.ofbiz.base.util.UtilNumber; import org.ofbiz.entity.GenericDelegator; import org.ofbiz.entity.GenericEntityException; -import org.ofbiz.entity.GenericEntity; import org.ofbiz.entity.GenericValue; import org.ofbiz.entity.condition.EntityCondition; import org.ofbiz.entity.condition.EntityConditionList; Modified: incubator/ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/util/UtilAccounting.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/util/UtilAccounting.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/util/UtilAccounting.java (original) +++ incubator/ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/util/UtilAccounting.java Mon Oct 2 08:50:00 2006 @@ -16,17 +16,12 @@ package org.ofbiz.accounting.util; -import java.math.BigDecimal; -import java.util.List; -import java.util.Map; - import org.ofbiz.accounting.AccountingException; import org.ofbiz.base.util.Debug; import org.ofbiz.base.util.UtilMisc; import org.ofbiz.entity.GenericDelegator; import org.ofbiz.entity.GenericEntityException; import org.ofbiz.entity.GenericValue; -import org.ofbiz.service.ServiceUtil; public class UtilAccounting { Modified: incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/ContentManagementServices.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/ContentManagementServices.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/ContentManagementServices.java (original) +++ incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/ContentManagementServices.java Mon Oct 2 08:50:00 2006 @@ -25,7 +25,6 @@ import java.util.Map; import java.util.Set; -import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpSession; import org.ofbiz.base.util.Debug; Modified: incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/compdoc/CompDocEvents.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/compdoc/CompDocEvents.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/compdoc/CompDocEvents.java (original) +++ incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/compdoc/CompDocEvents.java Mon Oct 2 08:50:00 2006 @@ -16,8 +16,6 @@ package org.ofbiz.content.compdoc; import java.io.ByteArrayInputStream; -import java.io.FileNotFoundException; -import java.io.FileOutputStream; import java.io.IOException; import java.util.HashMap; import java.util.Locale; @@ -40,14 +38,12 @@ import org.ofbiz.entity.GenericEntityException; import org.ofbiz.entity.GenericValue; import org.ofbiz.entity.util.ByteWrapper; -import org.ofbiz.security.Security; import org.ofbiz.service.GenericServiceException; import org.ofbiz.service.LocalDispatcher; import org.ofbiz.service.ModelService; import org.ofbiz.service.ServiceAuthException; import org.ofbiz.service.ServiceUtil; import org.ofbiz.webapp.event.CoreEvents; -import org.ofbiz.service.GenericServiceException; /** Modified: incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/data/DataResourceWorker.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/data/DataResourceWorker.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/data/DataResourceWorker.java (original) +++ incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/data/DataResourceWorker.java Mon Oct 2 08:50:00 2006 @@ -57,7 +57,6 @@ import org.ofbiz.entity.util.ByteWrapper; import org.ofbiz.service.GenericServiceException; import org.ofbiz.service.LocalDispatcher; -import org.ofbiz.webapp.view.ViewHandlerException; import org.ofbiz.widget.html.HtmlScreenRenderer; import org.ofbiz.widget.screen.ModelScreen; import org.ofbiz.widget.screen.ScreenFactory; Modified: incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/data/DataServices.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/data/DataServices.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/data/DataServices.java (original) +++ incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/data/DataServices.java Mon Oct 2 08:50:00 2006 @@ -33,7 +33,6 @@ import org.ofbiz.base.util.GeneralException; import org.ofbiz.base.util.UtilDateTime; import org.ofbiz.base.util.UtilMisc; -import org.ofbiz.base.util.UtilProperties; import org.ofbiz.base.util.UtilValidate; import org.ofbiz.entity.GenericDelegator; import org.ofbiz.entity.GenericEntityException; Modified: incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/email/EmailWorker.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/email/EmailWorker.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/email/EmailWorker.java (original) +++ incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/email/EmailWorker.java Mon Oct 2 08:50:00 2006 @@ -15,26 +15,18 @@ */ package org.ofbiz.content.email; -import java.util.List; import java.util.Map; import java.util.HashMap; import java.io.ByteArrayOutputStream; -import java.io.ByteArrayInputStream; import java.io.InputStream; import java.io.IOException; import javax.mail.internet.MimeMessage; -import javax.mail.internet.InternetAddress; import javax.mail.MessagingException; import javax.mail.Multipart; import javax.mail.Part; -import org.ofbiz.entity.GenericDelegator; import org.ofbiz.entity.GenericValue; -import org.ofbiz.entity.GenericEntityException; -import org.ofbiz.base.util.UtilMisc; -import org.ofbiz.base.util.UtilValidate; -import org.ofbiz.base.util.Base64; import org.ofbiz.base.util.Debug; import org.ofbiz.service.LocalDispatcher; import org.ofbiz.service.GenericServiceException; Modified: incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/view/SimpleContentViewHandler.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/view/SimpleContentViewHandler.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/view/SimpleContentViewHandler.java (original) +++ incubator/ofbiz/trunk/applications/content/src/org/ofbiz/content/view/SimpleContentViewHandler.java Mon Oct 2 08:50:00 2006 @@ -15,31 +15,22 @@ */ package org.ofbiz.content.view; -import java.io.ByteArrayOutputStream; import java.io.ByteArrayInputStream; import java.io.IOException; -import java.io.StringWriter; -import java.io.UnsupportedEncodingException; -import java.io.Writer; -import java.util.List; - import javax.servlet.ServletContext; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; -import javax.servlet.http.HttpSession; import java.util.Locale; import org.ofbiz.base.util.Debug; import org.ofbiz.base.util.UtilHttp; import org.ofbiz.base.util.UtilValidate; -import org.ofbiz.base.util.UtilXml; import org.ofbiz.base.util.UtilMisc; import org.ofbiz.entity.util.ByteWrapper; import org.ofbiz.entity.GenericDelegator; import org.ofbiz.entity.GenericValue; import org.ofbiz.entity.GenericEntityException; import org.ofbiz.content.data.DataResourceWorker; -import org.ofbiz.webapp.control.RequestHandlerException; import org.ofbiz.webapp.view.ViewHandler; import org.ofbiz.webapp.view.ViewHandlerException; import org.ofbiz.base.util.GeneralException; Modified: incubator/ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/bom/BOMServices.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/bom/BOMServices.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/bom/BOMServices.java (original) +++ incubator/ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/bom/BOMServices.java Mon Oct 2 08:50:00 2006 @@ -33,7 +33,6 @@ import org.ofbiz.entity.GenericDelegator; import org.ofbiz.entity.GenericEntityException; import org.ofbiz.entity.GenericValue; -import org.ofbiz.entity.util.EntityUtil; import org.ofbiz.order.order.OrderReadHelper; import org.ofbiz.security.Security; import org.ofbiz.service.DispatchContext; Modified: incubator/ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/jobshopmgt/ProductionRun.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/jobshopmgt/ProductionRun.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/jobshopmgt/ProductionRun.java (original) +++ incubator/ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/jobshopmgt/ProductionRun.java Mon Oct 2 08:50:00 2006 @@ -30,7 +30,6 @@ import org.ofbiz.entity.GenericEntityException; import org.ofbiz.entity.GenericValue; import org.ofbiz.entity.util.EntityUtil; -import org.ofbiz.service.GenericServiceException; import org.ofbiz.service.LocalDispatcher; import org.ofbiz.manufacturing.techdata.TechDataServices; Modified: incubator/ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/mrp/InventoryEventPlannedServices.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/mrp/InventoryEventPlannedServices.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/mrp/InventoryEventPlannedServices.java (original) +++ incubator/ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/mrp/InventoryEventPlannedServices.java Mon Oct 2 08:50:00 2006 @@ -16,7 +16,6 @@ */ package org.ofbiz.manufacturing.mrp; -import java.util.HashMap; import java.util.Map; import org.ofbiz.base.util.Debug; Modified: incubator/ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/mrp/ProposedOrder.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/mrp/ProposedOrder.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/mrp/ProposedOrder.java (original) +++ incubator/ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/mrp/ProposedOrder.java Mon Oct 2 08:50:00 2006 @@ -19,7 +19,6 @@ import java.sql.Timestamp; import java.util.HashMap; -import java.util.Iterator; import java.util.List; import java.util.ArrayList; import java.util.ListIterator; Modified: incubator/ofbiz/trunk/applications/marketing/src/org/ofbiz/marketing/marketing/MarketingServices.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/marketing/src/org/ofbiz/marketing/marketing/MarketingServices.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/marketing/src/org/ofbiz/marketing/marketing/MarketingServices.java (original) +++ incubator/ofbiz/trunk/applications/marketing/src/org/ofbiz/marketing/marketing/MarketingServices.java Mon Oct 2 08:50:00 2006 @@ -27,7 +27,6 @@ import org.ofbiz.entity.GenericDelegator; import org.ofbiz.entity.GenericEntityException; import org.ofbiz.entity.GenericValue; -import org.ofbiz.entity.util.EntityUtil; import org.ofbiz.service.*; /** Modified: incubator/ofbiz/trunk/applications/marketing/src/org/ofbiz/marketing/report/ReportHelper.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/marketing/src/org/ofbiz/marketing/report/ReportHelper.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/marketing/src/org/ofbiz/marketing/report/ReportHelper.java (original) +++ incubator/ofbiz/trunk/applications/marketing/src/org/ofbiz/marketing/report/ReportHelper.java Mon Oct 2 08:50:00 2006 @@ -17,11 +17,8 @@ package org.ofbiz.marketing.report; import org.ofbiz.base.util.UtilMisc; -import org.ofbiz.base.util.Debug; import org.ofbiz.entity.GenericValue; import org.ofbiz.entity.util.EntityUtil; -import org.ofbiz.marketing.tracking.TrackingCodeEvents; - import java.util.*; /** Modified: incubator/ofbiz/trunk/applications/order/src/org/ofbiz/order/order/OrderServices.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/order/src/org/ofbiz/order/order/OrderServices.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/order/src/org/ofbiz/order/order/OrderServices.java (original) +++ incubator/ofbiz/trunk/applications/order/src/org/ofbiz/order/order/OrderServices.java Mon Oct 2 08:50:00 2006 @@ -52,8 +52,6 @@ import org.ofbiz.order.shoppingcart.shipping.ShippingEvents; import org.ofbiz.party.contact.ContactHelper; import org.ofbiz.party.party.PartyWorker; -import org.ofbiz.product.catalog.CatalogWorker; -import org.ofbiz.product.product.ProductContentWrapper; import org.ofbiz.product.product.ProductWorker; import org.ofbiz.product.store.ProductStoreWorker; import org.ofbiz.security.Security; Modified: incubator/ofbiz/trunk/applications/order/src/org/ofbiz/order/quote/QuoteServices.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/order/src/org/ofbiz/order/quote/QuoteServices.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/order/src/org/ofbiz/order/quote/QuoteServices.java (original) +++ incubator/ofbiz/trunk/applications/order/src/org/ofbiz/order/quote/QuoteServices.java Mon Oct 2 08:50:00 2006 @@ -16,25 +16,19 @@ */ package org.ofbiz.order.quote; -import java.util.HashMap; -import java.util.Iterator; -import java.util.List; import java.util.Locale; import java.util.Map; import javolution.util.FastMap; import org.ofbiz.base.util.Debug; -import org.ofbiz.base.util.GeneralException; import org.ofbiz.base.util.UtilMisc; import org.ofbiz.base.util.UtilProperties; import org.ofbiz.base.util.UtilValidate; import org.ofbiz.entity.GenericDelegator; import org.ofbiz.entity.GenericEntityException; import org.ofbiz.entity.GenericValue; -import org.ofbiz.party.party.PartyWorker; import org.ofbiz.service.DispatchContext; -import org.ofbiz.service.GenericServiceException; import org.ofbiz.service.LocalDispatcher; import org.ofbiz.service.ServiceUtil; Modified: incubator/ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/product/ProductPromoWorker.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/product/ProductPromoWorker.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/product/ProductPromoWorker.java (original) +++ incubator/ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/product/ProductPromoWorker.java Mon Oct 2 08:50:00 2006 @@ -21,7 +21,6 @@ import java.util.HashMap; import java.util.HashSet; import java.util.Iterator; -import java.util.LinkedList; import java.util.List; import java.util.Locale; import java.util.Map; Modified: incubator/ofbiz/trunk/applications/order/src/org/ofbiz/order/thirdparty/zipsales/ZipSalesServices.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/order/src/org/ofbiz/order/thirdparty/zipsales/ZipSalesServices.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/order/src/org/ofbiz/order/thirdparty/zipsales/ZipSalesServices.java (original) +++ incubator/ofbiz/trunk/applications/order/src/org/ofbiz/order/thirdparty/zipsales/ZipSalesServices.java Mon Oct 2 08:50:00 2006 @@ -30,7 +30,6 @@ import org.ofbiz.base.util.Debug; import org.ofbiz.base.util.GeneralException; import org.ofbiz.base.util.StringUtil; -import org.ofbiz.base.util.UtilHttp; import org.ofbiz.base.util.UtilMisc; import org.ofbiz.base.util.UtilProperties; import org.ofbiz.base.util.UtilURL; Modified: incubator/ofbiz/trunk/applications/party/src/org/ofbiz/party/communication/CommunicationEventServices.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/party/src/org/ofbiz/party/communication/CommunicationEventServices.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/party/src/org/ofbiz/party/communication/CommunicationEventServices.java (original) +++ incubator/ofbiz/trunk/applications/party/src/org/ofbiz/party/communication/CommunicationEventServices.java Mon Oct 2 08:50:00 2006 @@ -20,7 +20,6 @@ import java.util.*; import java.sql.Timestamp; -import org.ofbiz.base.util.Debug; import org.ofbiz.base.util.UtilDateTime; import org.ofbiz.base.util.UtilMisc; import org.ofbiz.base.util.UtilProperties; Modified: incubator/ofbiz/trunk/applications/pos/src/org/ofbiz/pos/component/Output.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/pos/src/org/ofbiz/pos/component/Output.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/pos/src/org/ofbiz/pos/component/Output.java (original) +++ incubator/ofbiz/trunk/applications/pos/src/org/ofbiz/pos/component/Output.java Mon Oct 2 08:50:00 2006 @@ -16,8 +16,6 @@ package org.ofbiz.pos.component; import net.xoetrope.swing.XEdit; -import net.xoetrope.xui.XProjectManager; - import org.ofbiz.pos.screen.PosScreen; import org.ofbiz.pos.PosTransaction; import org.ofbiz.base.util.UtilProperties; @@ -96,4 +94,4 @@ public void clear() { output.setText(""); } -} \ No newline at end of file +} Modified: incubator/ofbiz/trunk/applications/pos/src/org/ofbiz/pos/event/ManagerEvents.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/pos/src/org/ofbiz/pos/event/ManagerEvents.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/pos/src/org/ofbiz/pos/event/ManagerEvents.java (original) +++ incubator/ofbiz/trunk/applications/pos/src/org/ofbiz/pos/event/ManagerEvents.java Mon Oct 2 08:50:00 2006 @@ -20,7 +20,6 @@ import java.util.Map; import java.sql.Timestamp; import java.util.Locale; -import java.lang.Number; import java.text.DecimalFormat; import java.text.ParseException; Modified: incubator/ofbiz/trunk/applications/product/src/org/ofbiz/product/feature/ParametricSearch.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/product/src/org/ofbiz/product/feature/ParametricSearch.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/product/src/org/ofbiz/product/feature/ParametricSearch.java (original) +++ incubator/ofbiz/trunk/applications/product/src/org/ofbiz/product/feature/ParametricSearch.java Mon Oct 2 08:50:00 2006 @@ -16,10 +16,8 @@ */ package org.ofbiz.product.feature; -import java.util.HashMap; import java.util.HashSet; import java.util.Iterator; -import java.util.LinkedList; import java.util.List; import java.util.Map; import java.util.Set; Modified: incubator/ofbiz/trunk/applications/product/src/org/ofbiz/product/product/ProductEvents.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/product/src/org/ofbiz/product/product/ProductEvents.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/product/src/org/ofbiz/product/product/ProductEvents.java (original) +++ incubator/ofbiz/trunk/applications/product/src/org/ofbiz/product/product/ProductEvents.java Mon Oct 2 08:50:00 2006 @@ -17,7 +17,6 @@ package org.ofbiz.product.product; import java.sql.Timestamp; -import java.util.HashMap; import java.util.HashSet; import java.util.Iterator; import java.util.LinkedList; @@ -38,7 +37,6 @@ import org.ofbiz.base.util.UtilParse; import org.ofbiz.base.util.UtilProperties; import org.ofbiz.base.util.UtilValidate; -import org.ofbiz.base.util.string.FlexibleStringExpander; import org.ofbiz.entity.GenericDelegator; import org.ofbiz.entity.GenericEntityException; import org.ofbiz.entity.GenericPK; Modified: incubator/ofbiz/trunk/applications/product/src/org/ofbiz/shipment/shipment/ShipmentEvents.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/product/src/org/ofbiz/shipment/shipment/ShipmentEvents.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/product/src/org/ofbiz/shipment/shipment/ShipmentEvents.java (original) +++ incubator/ofbiz/trunk/applications/product/src/org/ofbiz/shipment/shipment/ShipmentEvents.java Mon Oct 2 08:50:00 2006 @@ -27,7 +27,6 @@ import org.ofbiz.entity.GenericDelegator; import org.ofbiz.entity.GenericEntityException; import org.ofbiz.entity.GenericValue; -import org.ofbiz.entity.util.ByteWrapper; /** * ShippingEvents - Events used for processing shipping fees Modified: incubator/ofbiz/trunk/applications/product/src/org/ofbiz/shipment/thirdparty/dhl/DhlServices.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/product/src/org/ofbiz/shipment/thirdparty/dhl/DhlServices.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/applications/product/src/org/ofbiz/shipment/thirdparty/dhl/DhlServices.java (original) +++ incubator/ofbiz/trunk/applications/product/src/org/ofbiz/shipment/thirdparty/dhl/DhlServices.java Mon Oct 2 08:50:00 2006 @@ -16,7 +16,6 @@ */ package org.ofbiz.shipment.thirdparty.dhl; -import java.io.FileOutputStream; import java.io.IOException; import java.io.StringWriter; import java.util.ArrayList; Modified: incubator/ofbiz/trunk/framework/base/src/base/org/ofbiz/base/util/UtilFormatOut.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/base/src/base/org/ofbiz/base/util/UtilFormatOut.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/framework/base/src/base/org/ofbiz/base/util/UtilFormatOut.java (original) +++ incubator/ofbiz/trunk/framework/base/src/base/org/ofbiz/base/util/UtilFormatOut.java Mon Oct 2 08:50:00 2006 @@ -17,10 +17,8 @@ import java.text.DateFormat; import java.text.DecimalFormat; -import java.text.NumberFormat; import java.text.ParseException; import java.util.Locale; -import java.util.Currency; /** * General output formatting functions - mainly for helping in JSPs Modified: incubator/ofbiz/trunk/framework/datafile/src/org/ofbiz/datafile/DataFile2EntityXml.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/datafile/src/org/ofbiz/datafile/DataFile2EntityXml.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/framework/datafile/src/org/ofbiz/datafile/DataFile2EntityXml.java (original) +++ incubator/ofbiz/trunk/framework/datafile/src/org/ofbiz/datafile/DataFile2EntityXml.java Mon Oct 2 08:50:00 2006 @@ -20,7 +20,6 @@ import java.net.*; import java.io.*; import org.ofbiz.base.util.*; -import org.ofbiz.datafile.*; /** * Modified: incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericEntity.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericEntity.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericEntity.java (original) +++ incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericEntity.java Mon Oct 2 08:50:00 2006 @@ -18,7 +18,6 @@ import java.io.PrintWriter; import java.io.Serializable; import java.math.BigDecimal; -import java.text.NumberFormat; import java.util.Collection; import java.util.Collections; import java.util.Iterator; Modified: incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityConditionListBase.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityConditionListBase.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityConditionListBase.java (original) +++ incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityConditionListBase.java Mon Oct 2 08:50:00 2006 @@ -19,12 +19,9 @@ import java.util.List; import java.util.Map; -import org.ofbiz.base.util.Debug; -import org.ofbiz.entity.EntityCryptoException; import org.ofbiz.entity.GenericDelegator; import org.ofbiz.entity.GenericModelException; import org.ofbiz.entity.model.ModelEntity; -import org.ofbiz.entity.model.ModelField; /** * Encapsulates a list of EntityConditions to be used as a single EntityCondition combined as specified Modified: incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityOperator.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityOperator.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityOperator.java (original) +++ incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityOperator.java Mon Oct 2 08:50:00 2006 @@ -22,7 +22,6 @@ import java.util.List; import java.util.Map; -import org.ofbiz.base.util.Debug; import org.ofbiz.entity.GenericDelegator; import org.ofbiz.entity.GenericEntity; import org.ofbiz.entity.GenericModelException; Modified: incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityWhereString.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityWhereString.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityWhereString.java (original) +++ incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityWhereString.java Mon Oct 2 08:50:00 2006 @@ -18,13 +18,10 @@ import java.util.List; import java.util.Map; -import org.ofbiz.base.util.Debug; -import org.ofbiz.entity.EntityCryptoException; import org.ofbiz.entity.GenericDelegator; import org.ofbiz.entity.GenericModelException; import org.ofbiz.entity.GenericEntity; import org.ofbiz.entity.model.ModelEntity; -import org.ofbiz.entity.model.ModelField; /** * <p>Encapsulates SQL expressions used for where clause snippets. Modified: incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/model/ModelEntity.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/model/ModelEntity.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/model/ModelEntity.java (original) +++ incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/model/ModelEntity.java Mon Oct 2 08:50:00 2006 @@ -26,8 +26,6 @@ import javolution.util.FastMap; import org.w3c.dom.Document; import org.w3c.dom.Element; -import org.w3c.dom.NodeList; - import org.ofbiz.base.util.Debug; import org.ofbiz.base.util.GeneralException; import org.ofbiz.base.util.ObjectType; Modified: incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/test/EntityTestSuite.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/test/EntityTestSuite.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/test/EntityTestSuite.java (original) +++ incubator/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/test/EntityTestSuite.java Mon Oct 2 08:50:00 2006 @@ -17,7 +17,6 @@ import java.sql.Timestamp; import java.util.ArrayList; -import java.util.HashMap; import java.util.Iterator; import java.util.LinkedList; import java.util.List; Modified: incubator/ofbiz/trunk/framework/service/src/org/ofbiz/service/mail/ServiceMcaUtil.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/service/src/org/ofbiz/service/mail/ServiceMcaUtil.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/framework/service/src/org/ofbiz/service/mail/ServiceMcaUtil.java (original) +++ incubator/ofbiz/trunk/framework/service/src/org/ofbiz/service/mail/ServiceMcaUtil.java Mon Oct 2 08:50:00 2006 @@ -19,8 +19,6 @@ import java.util.List; import java.util.Set; import java.util.TreeSet; -import java.util.Collection; - import org.ofbiz.base.component.ComponentConfig; import org.ofbiz.base.config.GenericConfigException; import org.ofbiz.base.config.MainResourceHandler; Modified: incubator/ofbiz/trunk/framework/testtools/src/org/ofbiz/testtools/JythonTest.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/testtools/src/org/ofbiz/testtools/JythonTest.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/framework/testtools/src/org/ofbiz/testtools/JythonTest.java (original) +++ incubator/ofbiz/trunk/framework/testtools/src/org/ofbiz/testtools/JythonTest.java Mon Oct 2 08:50:00 2006 @@ -17,7 +17,6 @@ import org.w3c.dom.Element; -import junit.framework.TestCase; import junit.framework.TestResult; /** Modified: incubator/ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/event/ServiceMultiEventHandler.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/event/ServiceMultiEventHandler.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/event/ServiceMultiEventHandler.java (original) +++ incubator/ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/event/ServiceMultiEventHandler.java Mon Oct 2 08:50:00 2006 @@ -16,7 +16,6 @@ package org.ofbiz.webapp.event; import java.util.Arrays; -import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.Locale; Modified: incubator/ofbiz/trunk/framework/webtools/src/org/ofbiz/webtools/WebToolsServices.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/webtools/src/org/ofbiz/webtools/WebToolsServices.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/framework/webtools/src/org/ofbiz/webtools/WebToolsServices.java (original) +++ incubator/ofbiz/trunk/framework/webtools/src/org/ofbiz/webtools/WebToolsServices.java Mon Oct 2 08:50:00 2006 @@ -37,17 +37,12 @@ import java.net.URL; import java.net.MalformedURLException; -import javolution.util.FastMap; - import org.ofbiz.base.util.Debug; -import org.ofbiz.base.util.GeneralException; import org.ofbiz.base.util.UtilMisc; -import org.ofbiz.base.util.UtilProperties; import org.ofbiz.base.util.UtilURL; import org.ofbiz.base.util.UtilValidate; import org.ofbiz.base.util.UtilDateTime; import org.ofbiz.entity.GenericDelegator; -import org.ofbiz.entity.GenericEntityException; import org.ofbiz.entity.GenericValue; import org.ofbiz.entity.util.EntityListIterator; import org.ofbiz.entity.util.EntitySaxReader; @@ -55,13 +50,10 @@ import org.ofbiz.entity.model.ModelEntity; import org.ofbiz.entity.model.ModelViewEntity; import org.ofbiz.service.DispatchContext; -import org.ofbiz.service.GenericServiceException; import org.ofbiz.service.LocalDispatcher; import org.ofbiz.service.ServiceUtil; import org.xml.sax.InputSource; -import org.w3c.dom.*; - import freemarker.template.*; import freemarker.ext.dom.NodeModel; import freemarker.ext.beans.BeansWrapper; Modified: incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/fo/FoFormRenderer.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/fo/FoFormRenderer.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/fo/FoFormRenderer.java (original) +++ incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/fo/FoFormRenderer.java Mon Oct 2 08:50:00 2006 @@ -17,31 +17,18 @@ import java.util.Iterator; import java.util.List; -import java.util.Locale; import java.util.Map; -import java.util.HashSet; -import java.util.Calendar; -import java.sql.Timestamp; - -import javax.servlet.ServletContext; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; -import org.ofbiz.base.util.Debug; -import org.ofbiz.base.util.UtilHttp; import org.ofbiz.base.util.UtilProperties; import org.ofbiz.base.util.UtilValidate; -import org.ofbiz.base.util.string.FlexibleStringExpander; -import org.ofbiz.webapp.control.RequestHandler; -import org.ofbiz.webapp.taglib.ContentUrlTag; -import org.ofbiz.widget.WidgetWorker; import org.ofbiz.widget.form.FormStringRenderer; import org.ofbiz.widget.form.ModelForm; import org.ofbiz.widget.form.ModelFormField; import org.ofbiz.widget.form.ModelFormField.CheckField; import org.ofbiz.widget.form.ModelFormField.DateFindField; import org.ofbiz.widget.form.ModelFormField.DateTimeField; -import org.ofbiz.widget.form.ModelFormField.DisplayEntityField; import org.ofbiz.widget.form.ModelFormField.DisplayField; import org.ofbiz.widget.form.ModelFormField.DropDownField; import org.ofbiz.widget.form.ModelFormField.FileField; Modified: incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/form/ModelForm.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/form/ModelForm.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/form/ModelForm.java (original) +++ incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/form/ModelForm.java Mon Oct 2 08:50:00 2006 @@ -20,7 +20,6 @@ import java.util.Iterator; import java.util.LinkedList; import java.util.List; -import java.util.ListIterator; import java.util.Map; import java.util.NoSuchElementException; import java.util.Set; Modified: incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/menu/ModelMenuCondition.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/menu/ModelMenuCondition.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/menu/ModelMenuCondition.java (original) +++ incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/menu/ModelMenuCondition.java Mon Oct 2 08:50:00 2006 @@ -17,7 +17,6 @@ import java.lang.reflect.Method; import java.util.Iterator; -import java.util.LinkedList; import java.util.List; import java.util.Map; Modified: incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ModelScreen.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ModelScreen.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ModelScreen.java (original) +++ incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ModelScreen.java Mon Oct 2 08:50:00 2006 @@ -23,7 +23,6 @@ import org.ofbiz.base.util.GeneralException; import org.ofbiz.base.util.UtilValidate; import org.ofbiz.base.util.UtilXml; -import org.ofbiz.base.util.collections.FlexibleMapAccessor; import org.ofbiz.base.util.string.FlexibleStringExpander; import org.ofbiz.entity.GenericDelegator; import org.ofbiz.entity.GenericEntity; Modified: incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ModelScreenCondition.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ModelScreenCondition.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ModelScreenCondition.java (original) +++ incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ModelScreenCondition.java Mon Oct 2 08:50:00 2006 @@ -18,7 +18,6 @@ import java.io.Serializable; import java.lang.reflect.Method; import java.util.Iterator; -import java.util.LinkedList; import java.util.List; import java.util.Map; Modified: incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ScreenRenderer.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ScreenRenderer.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ScreenRenderer.java (original) +++ incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ScreenRenderer.java Mon Oct 2 08:50:00 2006 @@ -48,7 +48,6 @@ import org.ofbiz.service.DispatchContext; import org.ofbiz.service.LocalDispatcher; import org.ofbiz.webapp.control.LoginWorker; -import org.ofbiz.widget.html.HtmlFormRenderer; import org.xml.sax.SAXException; import freemarker.ext.beans.BeansWrapper; Modified: incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ScreenXmlViewHandler.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ScreenXmlViewHandler.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ScreenXmlViewHandler.java (original) +++ incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ScreenXmlViewHandler.java Mon Oct 2 08:50:00 2006 @@ -19,7 +19,6 @@ import java.io.OutputStreamWriter; import java.io.Writer; -import javax.servlet.ServletContext; import javax.servlet.ServletOutputStream; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; @@ -27,13 +26,9 @@ import org.ofbiz.base.util.GeneralException; import org.ofbiz.base.util.UtilJ2eeCompat; -import org.ofbiz.webapp.view.ViewHandler; import org.ofbiz.webapp.view.ViewHandlerException; -import org.ofbiz.widget.html.HtmlScreenRenderer; -import org.ofbiz.widget.html.HtmlFormRenderer; import org.xml.sax.SAXException; -import org.ofbiz.webapp.view.ViewHandlerException; import org.ofbiz.widget.screen.ScreenWidgetViewHandler; import org.ofbiz.widget.xml.XmlFormRenderer; Modified: incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/tree/ModelTreeCondition.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/tree/ModelTreeCondition.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/tree/ModelTreeCondition.java (original) +++ incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/tree/ModelTreeCondition.java Mon Oct 2 08:50:00 2006 @@ -17,7 +17,6 @@ import java.lang.reflect.Method; import java.util.Iterator; -import java.util.LinkedList; import java.util.List; import java.util.Map; Modified: incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/xml/XmlFormRenderer.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/xml/XmlFormRenderer.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/xml/XmlFormRenderer.java (original) +++ incubator/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/xml/XmlFormRenderer.java Mon Oct 2 08:50:00 2006 @@ -17,31 +17,17 @@ import java.util.Iterator; import java.util.List; -import java.util.Locale; import java.util.Map; -import java.util.HashSet; -import java.util.Calendar; -import java.sql.Timestamp; - -import javax.servlet.ServletContext; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; -import org.ofbiz.base.util.Debug; -import org.ofbiz.base.util.UtilHttp; -import org.ofbiz.base.util.UtilProperties; import org.ofbiz.base.util.UtilValidate; -import org.ofbiz.base.util.string.FlexibleStringExpander; -import org.ofbiz.webapp.control.RequestHandler; -import org.ofbiz.webapp.taglib.ContentUrlTag; -import org.ofbiz.widget.WidgetWorker; import org.ofbiz.widget.form.FormStringRenderer; import org.ofbiz.widget.form.ModelForm; import org.ofbiz.widget.form.ModelFormField; import org.ofbiz.widget.form.ModelFormField.CheckField; import org.ofbiz.widget.form.ModelFormField.DateFindField; import org.ofbiz.widget.form.ModelFormField.DateTimeField; -import org.ofbiz.widget.form.ModelFormField.DisplayEntityField; import org.ofbiz.widget.form.ModelFormField.DisplayField; import org.ofbiz.widget.form.ModelFormField.DropDownField; import org.ofbiz.widget.form.ModelFormField.FileField; Modified: incubator/ofbiz/trunk/framework/workflow/src/org/ofbiz/workflow/WorkflowEngine.java URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/framework/workflow/src/org/ofbiz/workflow/WorkflowEngine.java?view=diff&rev=452088&r1=452087&r2=452088 ============================================================================== --- incubator/ofbiz/trunk/framework/workflow/src/org/ofbiz/workflow/WorkflowEngine.java (original) +++ incubator/ofbiz/trunk/framework/workflow/src/org/ofbiz/workflow/WorkflowEngine.java Mon Oct 2 08:50:00 2006 @@ -20,11 +20,7 @@ import java.util.Locale; import java.util.Map; -import javax.transaction.InvalidTransactionException; -import javax.transaction.SystemException; import javax.transaction.Transaction; -import javax.transaction.TransactionManager; - import org.ofbiz.base.util.Debug; import org.ofbiz.base.util.StringUtil; import org.ofbiz.base.util.UtilDateTime; @@ -32,7 +28,6 @@ import org.ofbiz.entity.GenericEntityException; import org.ofbiz.entity.GenericValue; import org.ofbiz.entity.transaction.GenericTransactionException; -import org.ofbiz.entity.transaction.TransactionFactory; import org.ofbiz.entity.transaction.TransactionUtil; import org.ofbiz.service.GenericRequester; import org.ofbiz.service.GenericResultWaiter; |
Free forum by Nabble | Edit this page |