mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Show more messages when reading a compressed combined format file.
Change-Id: I51a1b9454fcfe656e0fcf762dcfd9ecbadde86c3
This commit is contained in:
parent
4deb824f3a
commit
73665510ca
@ -183,7 +183,11 @@ public final class BinaryDictOffdeviceUtils {
|
|||||||
filename + " does not seem to be a dictionary file"));
|
filename + " does not seem to be a dictionary file"));
|
||||||
} else if (CombinedInputOutput.isCombinedDictionary(
|
} else if (CombinedInputOutput.isCombinedDictionary(
|
||||||
decodedSpec.mFile.getAbsolutePath())){
|
decodedSpec.mFile.getAbsolutePath())){
|
||||||
if (report) System.out.println("Format : Combined format");
|
if (report) {
|
||||||
|
System.out.println("Format : Combined format");
|
||||||
|
System.out.println("Packaging : " + decodedSpec.describeChain());
|
||||||
|
System.out.println("Uncompressed size : " + decodedSpec.mFile.length());
|
||||||
|
}
|
||||||
return CombinedInputOutput.readDictionaryCombined(
|
return CombinedInputOutput.readDictionaryCombined(
|
||||||
new BufferedInputStream(new FileInputStream(decodedSpec.mFile)));
|
new BufferedInputStream(new FileInputStream(decodedSpec.mFile)));
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user