• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
11 package org.tukaani.xz.lz;
12 
13 public final class Matches {
14     public final int[] len;
15     public final int[] dist;
16     public int count = 0;
17 
Matches(int countMax)18     Matches(int countMax) {
19         len = new int[countMax];
20         dist = new int[countMax];
21     }
22 }
23