dain 2005/02/02 22:09:53
Modified: modules/core/src/java/org/openejb/server
StandardServiceStack.java
SynchChannelServerDaemon.java
Log:
Removed references to WaitingException (no code was actually using it)
Revision Changes Path
1.3 +3 -4
openejb/modules/core/src/java/org/openejb/server/StandardServiceStack.java
Index: StandardServiceStack.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb/modules/core/src/java/org/openejb/server/StandardServiceStack.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- StandardServiceStack.java 19 Dec 2004 06:17:15 -0000 1.2
+++ StandardServiceStack.java 3 Feb 2005 03:09:53 -0000 1.3
@@ -49,7 +49,6 @@
import java.io.IOException;
import org.apache.geronimo.gbean.GBeanLifecycle;
-import org.apache.geronimo.gbean.WaitingException;
public class StandardServiceStack implements GBeanLifecycle {
@@ -115,11 +114,11 @@
return pool.getPriority();
}
- public void doStart() throws WaitingException, Exception {
+ public void doStart() throws Exception {
daemon.doStart();
}
- public void doStop() throws WaitingException, Exception {
+ public void doStop() throws Exception {
daemon.doStop();
}
1.3 +2 -3
openejb/modules/core/src/java/org/openejb/server/SynchChannelServerDaemon.java
Index: SynchChannelServerDaemon.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb/modules/core/src/java/org/openejb/server/SynchChannelServerDaemon.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- SynchChannelServerDaemon.java 19 Jan 2005 00:12:24 -0000 1.2
+++ SynchChannelServerDaemon.java 3 Feb 2005 03:09:53 -0000 1.3
@@ -54,7 +54,6 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.geronimo.gbean.GBeanLifecycle;
-import org.apache.geronimo.gbean.WaitingException;
public class SynchChannelServerDaemon implements GBeanLifecycle, Runnable {
private static final Log log =
LogFactory.getLog(SynchChannelServerDaemon.class);
@@ -87,7 +86,7 @@
}
}
- public void doStart() throws WaitingException, Exception {
+ public void doStart() throws Exception {
SocketSynchChannelFactory factory = new SocketSynchChannelFactory();
server = null;