Skip to content

Commit 719207e

Browse files
committed
checkstyle
1 parent abee38b commit 719207e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

bugsnag/src/test/java/com/bugsnag/AppenderTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -356,9 +356,9 @@ public void testSendThreads() {
356356
@Test
357357
public void testSplit() {
358358
assertTrue(appender.split(null).isEmpty());
359-
assertArrayEquals(new String[] { "" }, appender.split("").toArray());
359+
assertArrayEquals(new String[] {""}, appender.split("").toArray());
360360

361-
String[] expected = { "one", "two", "three" };
361+
String[] expected = {"one", "two", "three"};
362362
assertArrayEquals(expected, appender.split("one,two,three").toArray());
363363
}
364364

bugsnag/src/test/java/com/bugsnag/ConfigurationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public void testAutoCaptureOverride() {
119119
@Test
120120
public void testCustomSerializer() throws SerializationException {
121121
// flag to check if writeToStream was called
122-
final boolean[] methodCalled = { false };
122+
final boolean[] methodCalled = {false};
123123

124124
// Anonymous class extending DefaultSerializer
125125
Serializer customSerializer = new DefaultSerializer() {

bugsnag/src/test/java/com/bugsnag/SessionPayloadTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class SessionPayloadTest {
1818

1919
/**
2020
* Initialises the session payload for serialisation
21-
*
21+
*
2222
* @throws Throwable the throwable
2323
*/
2424
@Before

0 commit comments

Comments
 (0)