Repository: activemq-artemis Updated Branches: refs/heads/master 9e7fe6b01 -> 10187d003
NO-JIRA: Fix checkstyle false friend Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/20183f94 Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/20183f94 Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/20183f94 Branch: refs/heads/master Commit: 20183f94a4171f8d35cd956e490e2457711e330d Parents: 9e7fe6b Author: Benjamin Graf <[email protected]> Authored: Fri Oct 28 19:09:41 2016 +0200 Committer: Benjamin Graf <[email protected]> Committed: Fri Oct 28 19:09:41 2016 +0200 ---------------------------------------------------------------------- .../activemq/artemis/core/server/impl/ServiceRegistryImpl.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/20183f94/artemis-server/src/main/java/org/apache/activemq/artemis/core/server/impl/ServiceRegistryImpl.java ---------------------------------------------------------------------- diff --git a/artemis-server/src/main/java/org/apache/activemq/artemis/core/server/impl/ServiceRegistryImpl.java b/artemis-server/src/main/java/org/apache/activemq/artemis/core/server/impl/ServiceRegistryImpl.java index 4add7b5..1d08f4a 100644 --- a/artemis-server/src/main/java/org/apache/activemq/artemis/core/server/impl/ServiceRegistryImpl.java +++ b/artemis-server/src/main/java/org/apache/activemq/artemis/core/server/impl/ServiceRegistryImpl.java @@ -196,6 +196,7 @@ public class ServiceRegistryImpl implements ServiceRegistry { acceptorFactories.put(name, acceptorFactory); } + @SuppressWarnings("TypeParameterUnusedInFormals") public <T> T loadClass(final String className) { return AccessController.doPrivileged(new PrivilegedAction<T>() { @Override
