Github user cicekhayri commented on a diff in the pull request:
https://github.com/apache/tomee/pull/262#discussion_r239954756
--- Diff:
container/openejb-loader/src/main/java/org/apache/openejb/loader/SystemInstance.java
---
@@ -263,7 +318,7 @@ public ClassLoader getClassLoader() {
return removed;
}
- private static final AtomicReference<SystemInstance> system = new
AtomicReference<SystemInstance>();
+ private static final AtomicReference<SystemInstance> SYSTEM = new
AtomicReference<SystemInstance>();
--- End diff --
:) missed that changing it now
---