Skip to content

Commit

Permalink
[comments] Remove unused argument to method
Browse files Browse the repository at this point in the history
  • Loading branch information
uce committed Dec 8, 2015
1 parent 6b8ab45 commit a18f89b
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ private Map<Integer, byte[]> traverseStreamGraphAndGenerateHashes() {
// Generate the hash code. Because multiple path exist to each
// node, we might not have all required inputs available to
// generate the hash code.
if (generateNodeHash(currentNode, hashFunction, hashes, visited)) {
if (generateNodeHash(currentNode, hashFunction, hashes)) {
// Add the child nodes
for (StreamEdge outEdge : currentNode.getOutEdges()) {
StreamNode child = outEdge.getTargetVertex();
Expand All @@ -559,7 +559,6 @@ private Map<Integer, byte[]> traverseStreamGraphAndGenerateHashes() {
* @param node The node to generate the hash for
* @param hashFunction The hash function to use
* @param hashes The current state of generated hashes
* @param visited The current state of visited nodes
* @return <code>true</code> if the node hash has been generated.
* <code>false</code>, otherwise. If the operation is not successful, the
* hash needs be generated at a later point when all input is available.
Expand All @@ -569,8 +568,7 @@ private Map<Integer, byte[]> traverseStreamGraphAndGenerateHashes() {
private boolean generateNodeHash(
StreamNode node,
HashFunction hashFunction,
Map<Integer, byte[]> hashes,
Set<Integer> visited) {
Map<Integer, byte[]> hashes) {

// Check for user-specified ID
String userSpecifiedHash = node.getTransformationId();
Expand Down

0 comments on commit a18f89b

Please sign in to comment.