Skip to content

Commit 0fd4a41

Browse files
committed
Formatted
1 parent 70d2369 commit 0fd4a41

28 files changed

+32
-32
lines changed

src/main/java/de/rub/nds/modifiablevariable/biginteger/BigIntegerAddModification.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import javax.xml.bind.annotation.XmlType;
1717

1818
@XmlRootElement
19-
@XmlType(propOrder = {"summand", "modificationFilter", "postModification"})
19+
@XmlType(propOrder = { "summand", "modificationFilter", "postModification" })
2020
public class BigIntegerAddModification extends VariableModification<BigInteger> {
2121

2222
private final static int MAX_ADD_LENGTH = 8;

src/main/java/de/rub/nds/modifiablevariable/biginteger/BigIntegerExplicitValueModification.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import javax.xml.bind.annotation.XmlType;
1717

1818
@XmlRootElement
19-
@XmlType(propOrder = {"explicitValue", "modificationFilter", "postModification"})
19+
@XmlType(propOrder = { "explicitValue", "modificationFilter", "postModification" })
2020
public class BigIntegerExplicitValueModification extends VariableModification<BigInteger> {
2121

2222
private final static int MAX_EXPLICIT_LENGTH = 8;

src/main/java/de/rub/nds/modifiablevariable/biginteger/BigIntegerShiftLeftModification.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import javax.xml.bind.annotation.XmlType;
1616

1717
@XmlRootElement
18-
@XmlType(propOrder = {"shift", "modificationFilter", "postModification"})
18+
@XmlType(propOrder = { "shift", "modificationFilter", "postModification" })
1919
public class BigIntegerShiftLeftModification extends VariableModification<BigInteger> {
2020

2121
private final static int MAX_SHIFT_LENGTH = 32;

src/main/java/de/rub/nds/modifiablevariable/biginteger/BigIntegerShiftRightModification.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import javax.xml.bind.annotation.XmlType;
1616

1717
@XmlRootElement
18-
@XmlType(propOrder = {"shift", "modificationFilter", "postModification"})
18+
@XmlType(propOrder = { "shift", "modificationFilter", "postModification" })
1919
public class BigIntegerShiftRightModification extends VariableModification<BigInteger> {
2020

2121
private final static int MAX_SHIFT_LENGTH = 32;

src/main/java/de/rub/nds/modifiablevariable/biginteger/BigIntegerSubtractModification.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import javax.xml.bind.annotation.XmlType;
1717

1818
@XmlRootElement
19-
@XmlType(propOrder = {"subtrahend", "modificationFilter", "postModification"})
19+
@XmlType(propOrder = { "subtrahend", "modificationFilter", "postModification" })
2020
public class BigIntegerSubtractModification extends VariableModification<BigInteger> {
2121

2222
private final static int MAX_SUBTRACT_LENGTH = 8;

src/main/java/de/rub/nds/modifiablevariable/biginteger/BigIntegerXorModification.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import javax.xml.bind.annotation.XmlType;
1717

1818
@XmlRootElement
19-
@XmlType(propOrder = {"xor", "modificationFilter", "postModification"})
19+
@XmlType(propOrder = { "xor", "modificationFilter", "postModification" })
2020
public class BigIntegerXorModification extends VariableModification<BigInteger> {
2121

2222
private final static int MAX_XOR_LENGTH = 8;

src/main/java/de/rub/nds/modifiablevariable/bool/BooleanExplicitValueModification.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import javax.xml.bind.annotation.XmlType;
1414

1515
@XmlRootElement
16-
@XmlType(propOrder = {"explicitValue", "modificationFilter", "postModification"})
16+
@XmlType(propOrder = { "explicitValue", "modificationFilter", "postModification" })
1717
public class BooleanExplicitValueModification extends VariableModification<Boolean> {
1818

1919
private boolean explicitValue;

src/main/java/de/rub/nds/modifiablevariable/bool/BooleanToogleModification.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
@XmlRootElement
1616
@XmlType(propOrder = { "modificationFilter", "postModification" })
1717
public class BooleanToogleModification extends VariableModification<Boolean> {
18-
18+
1919
public BooleanToogleModification() {
2020
}
2121

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import javax.xml.bind.annotation.XmlType;
1818

1919
@XmlRootElement
20-
@XmlType(propOrder = {"count", "startPosition", "modificationFilter", "postModification"})
20+
@XmlType(propOrder = { "count", "startPosition", "modificationFilter", "postModification" })
2121
public class ByteArrayDeleteModification extends VariableModification<byte[]> {
2222

2323
private final static int MAX_MODIFIER_LENGTH = 32;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import javax.xml.bind.annotation.XmlType;
1515

1616
@XmlRootElement
17-
@XmlType(propOrder = {"modificationFilter", "postModification"})
17+
@XmlType(propOrder = { "modificationFilter", "postModification" })
1818
public class ByteArrayDuplicateModification extends VariableModification<byte[]> {
1919

2020
public ByteArrayDuplicateModification() {

0 commit comments

Comments
 (0)