aboutsummaryrefslogtreecommitdiff
path: root/src/org/tukaani/xz/DeltaCoder.java
blob: 808834c8c01d73bad4f8e364cafde03390085fe8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * DeltaCoder
 *
 * Author: Lasse Collin <lasse.collin@tukaani.org>
 *
 * This file has been put into the public domain.
 * You can do whatever you want with this file.
 */

package org.tukaani.xz;

abstract class DeltaCoder implements FilterCoder {
    public static final long FILTER_ID = 0x03;

    public boolean changesSize() {
        return false;
    }

    public boolean nonLastOK() {
        return true;
    }

    public boolean lastOK() {
        return false;
    }
}