Skip to content

Commit 06eb437

Browse files
committed
Removed ModifiableVariable
1 parent bc5d9df commit 06eb437

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

src/main/java/de/rub/nds/modifiablevariable/ModifiableVariable.java

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,6 @@
6565
@XmlAccessorType(XmlAccessType.FIELD)
6666
public abstract class ModifiableVariable<E> implements Serializable {
6767

68-
@XmlTransient
69-
protected Boolean autoformat = null;
70-
7168
@XmlElements(value = { @XmlElement(type = BigIntegerXorModification.class, name = "BigIntegerXorModification"),
7269
@XmlElement(type = BigIntegerSubtractModification.class, name = "BigIntegerSubtractModification"),
7370
@XmlElement(type = BigIntegerShiftRightModification.class, name = "BigIntegerShiftRightModification"),
@@ -109,14 +106,6 @@ public ModifiableVariable() {
109106

110107
}
111108

112-
public Boolean getAutoformat() {
113-
return autoformat;
114-
}
115-
116-
public void setAutoformat(Boolean autoformat) {
117-
this.autoformat = autoformat;
118-
}
119-
120109
public void setModification(VariableModification<E> modification) {
121110
this.modification = modification;
122111
}

src/main/java/de/rub/nds/modifiablevariable/bytearray/ModifiableByteArray.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
public class ModifiableByteArray extends ModifiableVariable<byte[]> implements Serializable {
2626

2727
public ModifiableByteArray() {
28-
autoformat = true;
2928
}
3029

3130
private byte[] originalValue;

0 commit comments

Comments
 (0)