Skip to content

Commit 582908b

Browse files
committed
Lint
1 parent 63fd91d commit 582908b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/com/thealgorithms/datastructures/bloomfilter/BloomFilter.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,9 @@ public int compute(T key) {
156156
private int asciiString(String word) {
157157
int sum = 0;
158158
for (char c : word.toCharArray()) {
159-
sum += c;
160-
}
161-
return sum;
159+
sum += c;
160+
}
161+
return sum;
162+
}
162163
}
163164
}
164-
}

0 commit comments

Comments
 (0)