Putting XML import/export export back in as it seems to run fine.

This commit is contained in:
Jindra Petřík
2021-01-04 17:56:13 +01:00
parent ac66eb740b
commit da34fcbd04
5 changed files with 11 additions and 15 deletions

View File

@@ -12,7 +12,8 @@
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library.
* License along with this library.
*/
package com.jpexs.decompiler.flash.abc.types;
import com.jpexs.decompiler.flash.IdentifiersDeobfuscation;
@@ -63,11 +64,11 @@ public class Multiname {
public int namespace_index;
public /*final JAVA 9*/ int namespace_set_index;
public /*final JAVA 9*/ int qname_index; //for TypeName
public /*final JAVA 9*/ int[] params; //for TypeName
@Internal
public boolean deleted;

View File

@@ -285,9 +285,7 @@ public abstract class FontTag extends DrawableTag implements AloneTag {
} else if (installedFontsByFamily.containsKey("Arial")) {
defaultFontName = "Arial";
} else {
//NOT AVAILABLE SINCE JAVA9+
//defaultFontName = installedFontsByFamily.keySet().iterator().next();
defaultFontName = "Dialog";
defaultFontName = installedFontsByFamily.keySet().iterator().next();
}
}