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

org.tukaani.xz.check.None Maven / Gradle / Ivy

The newest version!
// SPDX-License-Identifier: 0BSD
// SPDX-FileCopyrightText: The XZ for Java authors and contributors
// SPDX-FileContributor: Lasse Collin 

package org.tukaani.xz.check;

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy