Skip to content

Commit 8ad83cb

Browse files
committed
This old tweak doesn't satisfy FindBugs
1 parent 9c11790 commit 8ad83cb

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/main/java/org/apache/commons/codec/digest/PureJavaCrc32.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -635,8 +635,6 @@ public void update(final byte[] b, final int offset, final int len) {
635635
case 1:
636636
localCrc = localCrc >>> 8 ^ T[(localCrc ^ b[i++]) << 24 >>> 24];
637637
// falls-through
638-
default:
639-
// nothing
640638
}
641639
// Publish crc out to object
642640
crc = localCrc;

0 commit comments

Comments
 (0)