Changeset 15662 in josm for trunk/src/org/tukaani


Ignore:
Timestamp:
2020-01-08T23:35:55+01:00 (6 years ago)
Author:
simon04
Message:

Fix typo: overriden↦overridden

Location:
trunk/src/org/tukaani/xz
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/tukaani/xz/BasicArrayCache.java

    r13350 r15662  
    126126            //
    127127            // That last argument is true to get LRU cache behavior together
    128             // with the overriden removeEldestEntry method.
     128            // with the overridden removeEldestEntry method.
    129129            super(2 * STACKS_MAX, 0.75f, true);
    130130        }
  • trunk/src/org/tukaani/xz/BlockInputStream.java

    r13350 r15662  
    7878
    7979        try {
    80             // Set the maximum valid compressed size. This is overriden
     80            // Set the maximum valid compressed size. This is overridden
    8181            // by the value from the Compressed Size field if it is present.
    8282            compressedSizeLimit = (DecoderUtil.VLI_MAX & ~3)
  • trunk/src/org/tukaani/xz/rangecoder/RangeEncoder.java

    r13350 r15662  
    7373        // how big the finished buffer is. RangeEncoderToStream has no
    7474        // 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().
    7676        return -1;
    7777    }
Note: See TracChangeset for help on using the changeset viewer.