source: josm/trunk/src/org/tukaani/xz/lz/Matches.java@ 13766

Last change on this file since 13766 was 13350, checked in by stoecker, 7 years ago

see #15816 - add XZ support

File size: 463 bytes
Line 
1/*
2 * Matches
3 *
4 * Authors: Lasse Collin <lasse.collin@tukaani.org>
5 * Igor Pavlov <http://7-zip.org/>
6 *
7 * This file has been put into the public domain.
8 * You can do whatever you want with this file.
9 */
10
11package org.tukaani.xz.lz;
12
13public final class Matches {
14 public final int[] len;
15 public final int[] dist;
16 public int count = 0;
17
18 Matches(int countMax) {
19 len = new int[countMax];
20 dist = new int[countMax];
21 }
22}
Note: See TracBrowser for help on using the repository browser.