svn commit: r833091 - /ofbiz/trunk/framework/example/src/org/ofbiz/example/ExamplePrintServices.java

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r833091 - /ofbiz/trunk/framework/example/src/org/ofbiz/example/ExamplePrintServices.java

jleroux@apache.org
Author: jleroux
Date: Thu Nov  5 17:29:56 2009
New Revision: 833091

URL: http://svn.apache.org/viewvc?rev=833091&view=rev
Log:
A patch from Marc Morin "Resolve java warnings exposed in Eclipse : framework - example" (https://issues.apache.org/jira/browse/OFBIZ-3109) - OFBIZ-3109



Modified:
    ofbiz/trunk/framework/example/src/org/ofbiz/example/ExamplePrintServices.java

Modified: ofbiz/trunk/framework/example/src/org/ofbiz/example/ExamplePrintServices.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/example/src/org/ofbiz/example/ExamplePrintServices.java?rev=833091&r1=833090&r2=833091&view=diff
==============================================================================
--- ofbiz/trunk/framework/example/src/org/ofbiz/example/ExamplePrintServices.java (original)
+++ ofbiz/trunk/framework/example/src/org/ofbiz/example/ExamplePrintServices.java Thu Nov  5 17:29:56 2009
@@ -18,23 +18,8 @@
  *******************************************************************************/
 package org.ofbiz.example;
 
-import javolution.util.FastMap;
-
-import org.apache.fop.apps.FOPException;
-import org.apache.fop.apps.Fop;
-import org.apache.fop.apps.MimeConstants;
-import org.ofbiz.base.util.Debug;
-import org.ofbiz.base.util.GeneralException;
-import org.ofbiz.service.DispatchContext;
-import org.ofbiz.service.ServiceUtil;
-import org.ofbiz.webapp.view.ApacheFopWorker;
-import org.ofbiz.widget.html.HtmlScreenRenderer;
-import org.ofbiz.widget.screen.ScreenRenderer;
-import org.xml.sax.SAXException;
-
 import java.io.ByteArrayOutputStream;
 import java.io.IOException;
-import java.io.Reader;
 import java.io.StringReader;
 import java.io.StringWriter;
 import java.io.Writer;
@@ -54,6 +39,20 @@
 import javax.xml.parsers.ParserConfigurationException;
 import javax.xml.transform.stream.StreamSource;
 
+import javolution.util.FastMap;
+
+import org.apache.fop.apps.FOPException;
+import org.apache.fop.apps.Fop;
+import org.apache.fop.apps.MimeConstants;
+import org.ofbiz.base.util.Debug;
+import org.ofbiz.base.util.GeneralException;
+import org.ofbiz.service.DispatchContext;
+import org.ofbiz.service.ServiceUtil;
+import org.ofbiz.webapp.view.ApacheFopWorker;
+import org.ofbiz.widget.html.HtmlScreenRenderer;
+import org.ofbiz.widget.screen.ScreenRenderer;
+import org.xml.sax.SAXException;
+
 public class ExamplePrintServices {
     public static final String module = ExamplePrintServices.class.getName();