Skip to content

Commit ae4bbd2

Browse files
authored
Merge pull request #49 from tls-attacker/MakeAutoformatTransient
Removed the autoformat variable of the ModifiableByteArray
2 parents 9733a6c + e4fb9e2 commit ae4bbd2

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

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

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

68-
protected Boolean autoformat = null;
69-
7068
@XmlElements(value = { @XmlElement(type = BigIntegerXorModification.class, name = "BigIntegerXorModification"),
7169
@XmlElement(type = BigIntegerSubtractModification.class, name = "BigIntegerSubtractModification"),
7270
@XmlElement(type = BigIntegerShiftRightModification.class, name = "BigIntegerShiftRightModification"),
@@ -109,14 +107,6 @@ public ModifiableVariable() {
109107

110108
}
111109

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

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)