Author: lektran
Date: Wed Mar 24 23:32:17 2010
New Revision: 927223
URL:
http://svn.apache.org/viewvc?rev=927223&view=revLog:
Removed throws declaration since the exceptions aren't actually thrown; removed the resulting unused imports.
Modified:
ofbiz/trunk/framework/birt/src/org/ofbiz/birt/container/BirtContainer.java
Modified: ofbiz/trunk/framework/birt/src/org/ofbiz/birt/container/BirtContainer.java
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/birt/src/org/ofbiz/birt/container/BirtContainer.java?rev=927223&r1=927222&r2=927223&view=diff==============================================================================
--- ofbiz/trunk/framework/birt/src/org/ofbiz/birt/container/BirtContainer.java (original)
+++ ofbiz/trunk/framework/birt/src/org/ofbiz/birt/container/BirtContainer.java Wed Mar 24 23:32:17 2010
@@ -19,7 +19,6 @@
package org.ofbiz.birt.container;
import java.io.File;
-import java.sql.SQLException;
import java.util.HashMap;
import java.util.Map;
import java.util.logging.Level;
@@ -42,7 +41,6 @@ import org.ofbiz.base.util.UtilGenerics;
import org.ofbiz.base.util.UtilProperties;
import org.ofbiz.entity.Delegator;
import org.ofbiz.entity.DelegatorFactory;
-import org.ofbiz.entity.GenericEntityException;
import org.ofbiz.service.GenericDispatcher;
import org.ofbiz.service.LocalDispatcher;
@@ -163,7 +161,7 @@ public class BirtContainer implements Co
return "birt-container";
}
- public static IReportEngine getReportEngine() throws GenericEntityException, SQLException {
+ public static IReportEngine getReportEngine() {
return engine;
}