dain 2005/02/02 22:09:53
Modified: modules/core/src/java/org/openejb/corba/compiler
OpenORBSkeletonGenerator.java
Log:
Removed references to WaitingException (no code was actually using it)
Revision Changes Path
1.6 +4 -5
openejb/modules/core/src/java/org/openejb/corba/compiler/OpenORBSkeletonGenerator.java
Index: OpenORBSkeletonGenerator.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb/modules/core/src/java/org/openejb/corba/compiler/OpenORBSkeletonGenerator.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- OpenORBSkeletonGenerator.java 13 Jan 2005 17:00:23 -0000 1.5
+++ OpenORBSkeletonGenerator.java 3 Feb 2005 03:09:53 -0000 1.6
@@ -68,7 +68,6 @@
import org.apache.geronimo.gbean.GBeanInfo;
import org.apache.geronimo.gbean.GBeanInfoBuilder;
import org.apache.geronimo.gbean.GBeanLifecycle;
-import org.apache.geronimo.gbean.WaitingException;
import org.apache.geronimo.system.main.ToolsJarHack;
import org.openejb.util.JarUtils;
@@ -192,13 +191,13 @@
}
}
- public void doStart() throws WaitingException, Exception {
+ public void doStart() throws Exception {
if (compiler == null) {
compiler = new AntCompiler();
}
}
- public void doStop() throws WaitingException, Exception {
+ public void doStop() throws Exception {
}
public void doFail() {