You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ma...@apache.org on 2016/11/01 10:21:36 UTC

[07/34] activemq-artemis git commit: NO-JIRA: Fix checkstyle false friend

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/ARTEMIS-780
Commit: 20183f94a4171f8d35cd956e490e2457711e330d
Parents: 9e7fe6b
Author: Benjamin Graf <be...@gmx.net>
Authored: Fri Oct 28 19:09:41 2016 +0200
Committer: Benjamin Graf <be...@gmx.net>
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