You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by gt...@apache.org on 2015/07/09 16:09:51 UTC

activemq git commit: fix unchecked warn

Repository: activemq
Updated Branches:
  refs/heads/master 21fb80226 -> 0f4320d00


fix unchecked warn


Project: http://git-wip-us.apache.org/repos/asf/activemq/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/0f4320d0
Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/0f4320d0
Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/0f4320d0

Branch: refs/heads/master
Commit: 0f4320d00f4f79dd5743cae66c1b366098d99997
Parents: 21fb802
Author: gtully <ga...@gmail.com>
Authored: Thu Jul 9 15:09:32 2015 +0100
Committer: gtully <ga...@gmail.com>
Committed: Thu Jul 9 15:09:32 2015 +0100

----------------------------------------------------------------------
 .../java/org/apache/activemq/web/config/OsgiConfiguration.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq/blob/0f4320d0/activemq-web-console/src/main/java/org/apache/activemq/web/config/OsgiConfiguration.java
----------------------------------------------------------------------
diff --git a/activemq-web-console/src/main/java/org/apache/activemq/web/config/OsgiConfiguration.java b/activemq-web-console/src/main/java/org/apache/activemq/web/config/OsgiConfiguration.java
index 7aaa92c..276f3be 100644
--- a/activemq-web-console/src/main/java/org/apache/activemq/web/config/OsgiConfiguration.java
+++ b/activemq-web-console/src/main/java/org/apache/activemq/web/config/OsgiConfiguration.java
@@ -44,7 +44,7 @@ public class OsgiConfiguration extends AbstractConfiguration implements ManagedS
     public OsgiConfiguration() {
 
         BundleContext context = FrameworkUtil.getBundle(getClass()).getBundleContext();
-        Dictionary properties = new Hashtable();
+        Dictionary<String, String> properties = new Hashtable<String, String>();
         properties.put(Constants.SERVICE_PID, "org.apache.activemq.webconsole");
         service = context.registerService(ManagedService.class.getName(),
             this, properties);