All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xbib.io.compress.xz.check.None Maven / Gradle / Ivy

The newest version!
package org.xbib.io.compress.xz.check;

public class None extends Check {

    public None() {
        size = 0;
        name = "None";
    }

    public void update(byte[] buf, int off, int len) {
    }

    public byte[] finish() {
        byte[] empty = new byte[0];
        return empty;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy