Skip to content

Commit

Permalink
chore: fix checkstyle NoWhitespaceBeforeCheck
Browse files Browse the repository at this point in the history
  • Loading branch information
jdrueckert authored Nov 11, 2023
1 parent 8606a6f commit 43772db
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ public void addNode(Node node) {
}
if (akaNodeMap.containsKey(nodeAka)) {
Node aNode = akaNodeMap.get(nodeAka);
logger.info("Node {} also known as {} already matches existing node with uri {} - attempting replacing..."
, nodeUri, nodeAka, aNode.getUri());
logger.info("Node {} also known as {} already matches existing node with uri {} - attempting replacing...",
nodeUri, nodeAka, aNode.getUri());
replaceNode(aNode, node);
} else {
nodeMap.put(nodeUri, node);
Expand Down Expand Up @@ -275,8 +275,8 @@ private void connectFbo(Node toNode, int inputFboId, DependencyConnection fromCo

} else { // if adding new input failed, it already existed - check for connections
//TODO update
logger.info("{}.connectFbo({}, {}): Connection already existed. Testing for its connections.."
, toNode.getUri(), inputFboId, fromConnection.getName());
logger.info("{}.connectFbo({}, {}): Connection already existed. Testing for its connections..",
toNode.getUri(), inputFboId, fromConnection.getName());
DependencyConnection localConnection = toNode.getInputFboConnection(inputFboId);
// DependencyConnection localConnectionConnectedTo = localConnection.getConnectedConnections();
// if our input is connected
Expand Down Expand Up @@ -339,8 +339,8 @@ private void connectBufferPair(Node toNode, int inputConnectionId, DependencyCon

} else { // if adding new input failed, it already existed - check for connections
//TODO update
logger.info("{}.connectFbo({}, {}): Connection already existed. Testing for its connections.."
, toNode.getUri(), inputConnectionId, fromConnection.getName());
logger.info("{}.connectFbo({}, {}): Connection already existed. Testing for its connections..",
toNode.getUri(), inputConnectionId, fromConnection.getName());
DependencyConnection localConnection = toNode.getInputBufferPairConnection(inputConnectionId);
// DependencyConnection localConnectionConnectedTo = localConnection.getConnectedConnections();
// if our input is connected
Expand Down Expand Up @@ -538,8 +538,8 @@ private void reconnectInputToOutput(Node toNode, int inputId, DependencyConnecti

fromNode = findNode(fromConnection.getParentNode());
if (!fromConnection.getConnectedConnections().isEmpty()) {
logger.warn("WARNING: destination connection ({}) is already connected to ({})"
, fromConnection, fromConnection.getConnectedConnections());
logger.warn("WARNING: destination connection ({}) is already connected to ({})",
fromConnection, fromConnection.getConnectedConnections());
// TODO update the hashmap to string to be pretty
// throw new RuntimeException("Could not reconnect, destination connection (" + fromConnection + ") is already connected to ("
// + fromConnection.getConnectedConnections() + "). Remove connection first.");
Expand Down

0 comments on commit 43772db

Please sign in to comment.