Skip to content

Commit 9661073

Browse files
committed
This old tweak doesn't satisfy FindBugs
1 parent 46e8cdc commit 9661073

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/main/java/org/apache/commons/codec/digest/PureJavaCrc32C.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, int off, int len) {
635635
case 1:
636636
localCrc = localCrc >>> 8 ^ T[T8_0_START + ((localCrc ^ b[off++]) & 0xff)];
637637
// falls-through
638-
default:
639-
break; // satisfy Findbugs
640638
}
641639
// Publish crc out to object
642640
crc = localCrc;

0 commit comments

Comments
 (0)