ResFileDecoder: disabled xml-decoding of .html files.

This commit is contained in:
Ryszard Wiśniewski 2010-04-01 17:31:57 +02:00
parent f4a5e7f910
commit b8bbbad458

View File

@ -54,10 +54,10 @@ public class ResFileDecoder {
decode(inDir, inFileName, outDir, outResName + ".xml", "xml");
return;
}
if (inFileName.endsWith(".html")) {
decode(inDir, inFileName, outDir, outResName + ".html", "xml");
return;
}
// if (inFileName.endsWith(".html")) {
// decode(inDir, inFileName, outDir, outResName + ".html", "xml");
// return;
// }
decode(inDir, inFileName, outDir, outResName + ext, "raw");
}