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

com.github.fartherp.framework.compress.bzip2.BZip2 Maven / Gradle / Ivy

There is a newer version: 3.0.6
Show newest version
/*
 * Copyright (c) 2017. CK. All rights reserved.
 */

package com.github.fartherp.framework.compress.bzip2;

import com.github.fartherp.framework.compress.CommonCompress;

/**
 * Created by IntelliJ IDEA.
 * Author: CK
 * Date: 2015/4/15
 */
public class BZip2 extends CommonCompress {
    public BZip2() {
        setType(BZIP2);
        setSuffix(SUFFIX_BZIP2);
        commonCompress = new BZip2Compress(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy