FLA export bitmapfill fix

This commit is contained in:
Jindra Pet��k
2013-08-24 20:33:50 +02:00
parent 74a0d2623f
commit 0f96b573e0
@@ -296,9 +296,9 @@ public class XFLConverter {
if (bitmapCh instanceof ImageTag) {
ImageTag it = (ImageTag) bitmapCh;
ret += "bitmap" + bitmapCh.getCharacterId() + "." + it.getImageFormat();
}else{
if(bitmapCh!=null){
Logger.getLogger(XFLConverter.class.getName()).log(Level.SEVERE, "Suspicious bitmapfill:"+bitmapCh.getClass().getSimpleName());
} else {
if (bitmapCh != null) {
Logger.getLogger(XFLConverter.class.getName()).log(Level.SEVERE, "Suspicious bitmapfill:" + bitmapCh.getClass().getSimpleName());
}
return "<SolidColor color=\"#ffffff\" />";
}