Skip to content
This repository was archived by the owner on Feb 25, 2024. It is now read-only.

Commit 663d958

Browse files
committed
Code Reformat
1 parent 96883b8 commit 663d958

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

src/main/java/de/kaleidox/vban/Util.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import java.nio.charset.StandardCharsets;
66

77
import de.kaleidox.util.model.ByteArray;
8-
import de.kaleidox.vban.model.data.AudioFrame;
98

109
import static java.lang.System.arraycopy;
1110

src/main/java/de/kaleidox/vban/packet/VBANPacketHead.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ private VBANPacketHead(byte[] bytes) {
3737
}
3838

3939
public VBANPacketHead(int protocol,
40-
int sampleRateIndex,
41-
int samples,
42-
int channel,
43-
int format,
44-
int codec,
45-
String streamName,
46-
int frameCounter) {
40+
int sampleRateIndex,
41+
int samples,
42+
int channel,
43+
int format,
44+
int codec,
45+
String streamName,
46+
int frameCounter) {
4747
checkRange(samples, 0, 255);
4848
checkRange(channel, 0, 255);
4949

src/test/java/de/kaleidox/test/vban/VBANOutputStreamTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ public void testWriteTooLargeArray() throws IOException {
4242
throw filter;
4343
}
4444
}
45+
4546
@Test
4647
public void testStringWithinBounds() throws IOException {
4748
byte[] bytes = new byte[VBANPacket.MAX_SIZE_WITHOUT_HEAD];

src/test/java/de/kaleidox/test/vban/packet/VBANPacketTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public void testHeaderSize() {
5252
@Test
5353
public void testHeadDecomposing() throws InvalidPacketAttributeException {
5454
byte[] bytes = new byte[VBANPacket.MAX_SIZE_WITHOUT_HEAD];
55-
55+
5656
VBANPacket generated = factory.create();
5757
generated.setData(bytes);
5858

0 commit comments

Comments
 (0)