possibility to add new tags without enabling "show emtpy folders" from the context menu of the "others" node

This commit is contained in:
2015-07-25 13:05:50 +02:00
parent 7669a6747c
commit 157f167dfe
6 changed files with 74 additions and 65 deletions
@@ -38,6 +38,7 @@ import java.util.Map.Entry;
public abstract class Trait implements Cloneable, Serializable {
public static final String METADATA_CTOR_DEFINITION = "__go_to_ctor_definition_help";
public static final String METADATA_DEFINITION = "__go_to_definition_help";
private static final int[] EMPTY_METADATA_ARRAY = new int[0];
@@ -62,6 +62,7 @@ public class DoActionTag extends Tag implements ASMSource {
*/
public DoActionTag(SWF swf) {
super(swf, ID, NAME, null);
actionBytes = ByteArrayRange.EMPTY;
}
/**
@@ -69,6 +69,7 @@ public class DoInitActionTag extends Tag implements CharacterIdTag, ASMSource {
*/
public DoInitActionTag(SWF swf) {
super(swf, ID, NAME, null);
actionBytes = ByteArrayRange.EMPTY;
}
/**