Home | History | Annotate | Download | only in common
      1 /*
      2  * StreamFlags
      3  *
      4  * Author: Lasse Collin <lasse.collin (at) tukaani.org>
      5  *
      6  * This file has been put into the public domain.
      7  * You can do whatever you want with this file.
      8  */
      9 
     10 package org.tukaani.xz.common;
     11 
     12 public class StreamFlags {
     13     public int checkType = -1;
     14     public long backwardSize = -1;
     15 }
     16