Remove unnecessary checkstyle toggle

This commit is contained in:
Paul Schaub 2018-07-03 18:11:33 +02:00
parent 813690c10a
commit c4848fffc9
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
1 changed files with 0 additions and 2 deletions

View File

@ -373,9 +373,7 @@ public class PubSubDelegate {
// Get access to the PubSubManager's nodeMap
Field field = pubSubManager.getClass().getDeclaredField("nodeMap");
field.setAccessible(true);
// CHECKSTYLE:OFF
Map<String, Node> nodeMap = (Map) field.get(pubSubManager);
// CHECKSTYLE:ON
// Check, if the node already exists
Node existingNode = nodeMap.get(nodeName);