Repository: tomee Updated Branches: refs/heads/master 1ead00932 -> 37eb102e4
style Project: http://git-wip-us.apache.org/repos/asf/tomee/repo Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/37eb102e Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/37eb102e Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/37eb102e Branch: refs/heads/master Commit: 37eb102e47bceceda1507dcb05c82cdba215d364 Parents: 1ead009 Author: rmannibucau <[email protected]> Authored: Thu Oct 20 22:10:40 2016 +0200 Committer: rmannibucau <[email protected]> Committed: Thu Oct 20 22:10:40 2016 +0200 ---------------------------------------------------------------------- .../java/org/apache/openejb/core/OpenEJBInitialContextFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tomee/blob/37eb102e/container/openejb-core/src/main/java/org/apache/openejb/core/OpenEJBInitialContextFactory.java ---------------------------------------------------------------------- diff --git a/container/openejb-core/src/main/java/org/apache/openejb/core/OpenEJBInitialContextFactory.java b/container/openejb-core/src/main/java/org/apache/openejb/core/OpenEJBInitialContextFactory.java index 0d91b41..e614159 100644 --- a/container/openejb-core/src/main/java/org/apache/openejb/core/OpenEJBInitialContextFactory.java +++ b/container/openejb-core/src/main/java/org/apache/openejb/core/OpenEJBInitialContextFactory.java @@ -36,7 +36,7 @@ public class OpenEJBInitialContextFactory implements InitialContextFactory { return new LocalFallbackContextWrapper(SystemInstance.get().getComponent(ContainerSystem.class).getJNDIContext()); } - private static class LocalFallbackContextWrapper extends ContextWrapper { + private static final class LocalFallbackContextWrapper extends ContextWrapper { private final ConcurrentMap<String, String> mapping = new ConcurrentHashMap<>(); private LocalFallbackContextWrapper(final Context jndiContext) {
