jdk/src/java.base/share/classes/java/util/zip/CRC32C.java
changeset 35302 e4d2275861c3
parent 33674 566777f73c32
equal deleted inserted replaced
35301:12dabfdd1997 35302:e4d2275861c3
    42  * <p>
    42  * <p>
    43  * Passing a {@code null} argument to a method in this class will cause a
    43  * Passing a {@code null} argument to a method in this class will cause a
    44  * {@link NullPointerException} to be thrown.
    44  * {@link NullPointerException} to be thrown.
    45  * </p>
    45  * </p>
    46  *
    46  *
    47  * @since 1.9
    47  * @since 9
    48  */
    48  */
    49 public final class CRC32C implements Checksum {
    49 public final class CRC32C implements Checksum {
    50 
    50 
    51     /*
    51     /*
    52      * This CRC-32C implementation uses the 'slicing-by-8' algorithm described
    52      * This CRC-32C implementation uses the 'slicing-by-8' algorithm described