am a2422c0b: Merge "Show more messages when reading a compressed combined format file."
* commit 'a2422c0bd1b82b382fa7f6e4042f55a8fd37a8cb': Show more messages when reading a compressed combined format file.main
commit
6d4cdadb80
|
@ -183,7 +183,11 @@ public final class BinaryDictOffdeviceUtils {
|
|||
filename + " does not seem to be a dictionary file"));
|
||||
} else if (CombinedInputOutput.isCombinedDictionary(
|
||||
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(
|
||||
new BufferedInputStream(new FileInputStream(decodedSpec.mFile)));
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue