Changeset 15662 in josm for trunk/src/org/tukaani
- Timestamp:
- 2020-01-08T23:35:55+01:00 (6 years ago)
- Location:
- trunk/src/org/tukaani/xz
- Files:
-
- 3 edited
-
BasicArrayCache.java (modified) (1 diff)
-
BlockInputStream.java (modified) (1 diff)
-
rangecoder/RangeEncoder.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/tukaani/xz/BasicArrayCache.java
r13350 r15662 126 126 // 127 127 // That last argument is true to get LRU cache behavior together 128 // with the overriden removeEldestEntry method. 128 // with the overridden removeEldestEntry method. 129 129 super(2 * STACKS_MAX, 0.75f, true); 130 130 } -
trunk/src/org/tukaani/xz/BlockInputStream.java
r13350 r15662 78 78 79 79 try { 80 // Set the maximum valid compressed size. This is overriden 80 // Set the maximum valid compressed size. This is overridden 81 81 // by the value from the Compressed Size field if it is present. 82 82 compressedSizeLimit = (DecoderUtil.VLI_MAX & ~3) -
trunk/src/org/tukaani/xz/rangecoder/RangeEncoder.java
r13350 r15662 73 73 // how big the finished buffer is. RangeEncoderToStream has no 74 74 // buffer and thus no return value is needed. Here we use a dummy 75 // value which can be overriden in RangeEncoderToBuffer.finish(). 75 // value which can be overridden in RangeEncoderToBuffer.finish(). 76 76 return -1; 77 77 }
Note:
See TracChangeset
for help on using the changeset viewer.
