On Jan 18, 2007, at 4:41 PM, [EMAIL PROTECTED] wrote:
Author: adc
Date: Thu Jan 18 16:41:27 2007
New Revision: 497662
URL: http://svn.apache.org/viewvc?view=rev&rev=497662
Log:
Another context and states are final statics
--- incubator/openejb/trunk/openejb3/container/openejb-core/src/
main/java/org/apache/openejb/core/BaseContext.java (original)
+++ incubator/openejb/trunk/openejb3/container/openejb-core/src/
main/java/org/apache/openejb/core/BaseContext.java Thu Jan 18
16:41:27 2007
@@ -45,26 +45,20 @@
private final SecurityService securityService;
private final TransactionManager transactionManager;
private State state;
- protected final State[] states = new State[Operation.values
().length];
+ protected static State[] states = new State[Operation.values
().length];
I think you missed the final modifier.
-dain