We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e9fb92 commit edf0daeCopy full SHA for edf0dae
src/main/java/com/xenoamess/x8l/ContentNode.java
@@ -40,6 +40,16 @@ public void addAttribute(String attributeString) {
40
}
41
42
43
+ public void removeAttribute(String attributeString) {
44
+ int index = attributeString.indexOf("=");
45
+ if (index == -1) {
46
+ } else {
47
+ attributeString = attributeString.substring(0, index);
48
+ }
49
+ this.attributes.remove(attributeString);
50
+ this.attributesKeyList.remove(attributeString);
51
52
+
53
@Override
54
public void show() {
55
super.show();
0 commit comments