Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordonald.g.dunne2013-12-13 22:19:26 +0000
committerGerrit Code Review @ Eclipse.org2013-12-17 21:00:12 +0000
commitec7531d3cae70fc3c17080509d31332469372a2b (patch)
tree9d59381b13d0035ed94339010886b7257e06a59a /plugins/org.eclipse.osee.framework.messaging
parentd30b41abb454f0e3270bd0ac573c3278f5660eb9 (diff)
downloadorg.eclipse.osee-ec7531d3cae70fc3c17080509d31332469372a2b.tar.gz
org.eclipse.osee-ec7531d3cae70fc3c17080509d31332469372a2b.tar.xz
org.eclipse.osee-ec7531d3cae70fc3c17080509d31332469372a2b.zip
refactor: Remove all invalid SuppressWarnings uses
Diffstat (limited to 'plugins/org.eclipse.osee.framework.messaging')
-rw-r--r--plugins/org.eclipse.osee.framework.messaging/src/org/eclipse/osee/framework/messaging/internal/MessageServiceImpl.java11
1 files changed, 4 insertions, 7 deletions
diff --git a/plugins/org.eclipse.osee.framework.messaging/src/org/eclipse/osee/framework/messaging/internal/MessageServiceImpl.java b/plugins/org.eclipse.osee.framework.messaging/src/org/eclipse/osee/framework/messaging/internal/MessageServiceImpl.java
index aa3ec61c62d..9ad9cf89cf0 100644
--- a/plugins/org.eclipse.osee.framework.messaging/src/org/eclipse/osee/framework/messaging/internal/MessageServiceImpl.java
+++ b/plugins/org.eclipse.osee.framework.messaging/src/org/eclipse/osee/framework/messaging/internal/MessageServiceImpl.java
@@ -56,8 +56,7 @@ public class MessageServiceImpl implements MessageService {
OseeLog.log(MessageServiceImpl.class, Level.SEVERE, ex1);
}
}
- OseeLog.logf(Activator.class, Level.FINER,
- "Default URI for message Service [%s]", defaultURI.toASCIIString());
+ OseeLog.logf(Activator.class, Level.FINER, "Default URI for message Service [%s]", defaultURI.toASCIIString());
return defaultURI;
}
@@ -81,17 +80,15 @@ public class MessageServiceImpl implements MessageService {
return connectionNodes.isEmpty();
}
- @SuppressWarnings("unused")
@Override
public ConnectionNode get(NodeInfo nodeInfo) throws OseeCoreException {
ConnectionNode node = connectionNodes.get(nodeInfo);
if (node == null) {
- OseeLog.logf(Activator.class, Level.FINEST,
- "going to create a new Connection Node for [%s]", nodeInfo.toString());
+ OseeLog.logf(Activator.class, Level.FINEST, "going to create a new Connection Node for [%s]",
+ nodeInfo.toString());
node = factory.create(nodeInfo);
connectionNodes.put(nodeInfo, node);
- OseeLog.logf(Activator.class, Level.FINE,
- "Created a new Connection Node for [%s]", nodeInfo.toString());
+ OseeLog.logf(Activator.class, Level.FINE, "Created a new Connection Node for [%s]", nodeInfo.toString());
}
return node;
}

Back to the top