Repository: tomee Updated Branches: refs/heads/tomee-1.7.x 37bfd0092 -> 9e3f59d39
PMD Project: http://git-wip-us.apache.org/repos/asf/tomee/repo Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/9e3f59d3 Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/9e3f59d3 Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/9e3f59d3 Branch: refs/heads/tomee-1.7.x Commit: 9e3f59d397d64c8d9179963c3e2a53f98071e9ac Parents: 37bfd00 Author: Jonathan Gallimore <[email protected]> Authored: Wed Oct 10 16:41:12 2018 +0100 Committer: Jonathan Gallimore <[email protected]> Committed: Wed Oct 10 16:41:12 2018 +0100 ---------------------------------------------------------------------- .../java/org/apache/openejb/resource/AutoConnectionTracker.java | 2 +- .../apache/openejb/resource/GeronimoConnectionManagerFactory.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tomee/blob/9e3f59d3/container/openejb-core/src/main/java/org/apache/openejb/resource/AutoConnectionTracker.java ---------------------------------------------------------------------- diff --git a/container/openejb-core/src/main/java/org/apache/openejb/resource/AutoConnectionTracker.java b/container/openejb-core/src/main/java/org/apache/openejb/resource/AutoConnectionTracker.java index 6bdb65f..d47a795 100644 --- a/container/openejb-core/src/main/java/org/apache/openejb/resource/AutoConnectionTracker.java +++ b/container/openejb-core/src/main/java/org/apache/openejb/resource/AutoConnectionTracker.java @@ -60,7 +60,7 @@ public class AutoConnectionTracker implements ConnectionTracker { private final boolean cleanupLeakedConnections; - public AutoConnectionTracker(boolean cleanupLeakedConnections) { + public AutoConnectionTracker(final boolean cleanupLeakedConnections) { this.cleanupLeakedConnections = cleanupLeakedConnections; registry = SystemInstance.get().getComponent(TransactionSynchronizationRegistry.class); txMgr = SystemInstance.get().getComponent(TransactionManager.class); http://git-wip-us.apache.org/repos/asf/tomee/blob/9e3f59d3/container/openejb-core/src/main/java/org/apache/openejb/resource/GeronimoConnectionManagerFactory.java ---------------------------------------------------------------------- diff --git a/container/openejb-core/src/main/java/org/apache/openejb/resource/GeronimoConnectionManagerFactory.java b/container/openejb-core/src/main/java/org/apache/openejb/resource/GeronimoConnectionManagerFactory.java index 3a99637..8eddc96 100644 --- a/container/openejb-core/src/main/java/org/apache/openejb/resource/GeronimoConnectionManagerFactory.java +++ b/container/openejb-core/src/main/java/org/apache/openejb/resource/GeronimoConnectionManagerFactory.java @@ -233,7 +233,7 @@ public class GeronimoConnectionManagerFactory { return cleanupLeakedConnections; } - public void setCleanupLeakedConnections(boolean cleanupLeakedConnections) { + public void setCleanupLeakedConnections(final boolean cleanupLeakedConnections) { this.cleanupLeakedConnections = cleanupLeakedConnections; }
