dain 2005/02/02 22:09:53
Modified: modules/core/src/java/org/openejb/entity/cmp
PrimaryKeyGeneratorWrapper.java
Log:
Removed references to WaitingException (no code was actually using it)
Revision Changes Path
1.2 +3 -4
openejb/modules/core/src/java/org/openejb/entity/cmp/PrimaryKeyGeneratorWrapper.java
Index: PrimaryKeyGeneratorWrapper.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb/modules/core/src/java/org/openejb/entity/cmp/PrimaryKeyGeneratorWrapper.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- PrimaryKeyGeneratorWrapper.java 10 Nov 2004 04:46:11 -0000 1.1
+++ PrimaryKeyGeneratorWrapper.java 3 Feb 2005 03:09:53 -0000 1.2
@@ -50,7 +50,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.tranql.pkgenerator.PrimaryKeyGenerator;
import org.tranql.pkgenerator.PrimaryKeyGeneratorDelegate;
@@ -67,11 +66,11 @@
this.keyGeneratorDelegate = keyGeneratorDelegate;
}
- public void doStart() throws WaitingException, Exception {
+ public void doStart() throws Exception {
keyGeneratorDelegate.setPrimaryKeyGenerator(keyGenerator);
}
- public void doStop() throws WaitingException, Exception {
+ public void doStop() throws Exception {
keyGeneratorDelegate.setPrimaryKeyGenerator(null);
}