about issue #17

This commit is contained in:
Song Minjae
2017-04-19 21:15:09 +09:00
parent d8d4a062de
commit 261d78f1d2
234 changed files with 702 additions and 10 deletions

View File

@@ -21,7 +21,7 @@ public class ImageDataFactory {
/** True if we're going to use the native PNG loader - cached so it doesn't have
* the security check repeatedly
*/
private static boolean usePngLoader = true;
private static final boolean usePngLoader = false;
/** True if the PNG loader property has been checked */
private static boolean pngLoaderPropertyChecked = false;
@@ -41,7 +41,7 @@ public class ImageDataFactory {
public Object run() {
String val = System.getProperty(PNG_LOADER);
if ("false".equalsIgnoreCase(val)) {
usePngLoader = false;
//usePngLoader = false;
}
Log.info("Use Java PNG Loader = " + usePngLoader);