1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-04 18:29:23 +02:00

first working implemetation of Base64InputStream

This commit is contained in:
Nikolay Pultsin 2012-03-27 04:12:35 +01:00
parent 97725e0d40
commit 95cbfbbbcd
3 changed files with 69 additions and 64 deletions

View file

@ -88,9 +88,9 @@ public class PluginCollection {
}
if (formatType == FormatPlugin.Type.ANY) {
FormatPlugin p = getPlugin(fileType, FormatPlugin.Type.JAVA);
FormatPlugin p = getPlugin(fileType, FormatPlugin.Type.NATIVE);
if (p == null) {
p = getPlugin(fileType, FormatPlugin.Type.NATIVE);
p = getPlugin(fileType, FormatPlugin.Type.JAVA);
}
return p;
} else {