Skip to content

Commit b83c6b1

Browse files
author
Michael Mantos
committed
JAVA-56 - Fix format
1 parent a778fb6 commit b83c6b1

3 files changed

Lines changed: 14 additions & 14 deletions

File tree

src/main/java/com/stackify/api/common/http/HttpClient.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
/**
3838
* HttpClient
39-
*
39+
*
4040
* @author Eric Martin
4141
*/
4242
public class HttpClient {
@@ -65,7 +65,7 @@ public class HttpClient {
6565

6666
/**
6767
* Constructor
68-
*
68+
*
6969
* @param apiConfig API configuration
7070
*/
7171
public HttpClient(final ApiConfiguration apiConfig) {
@@ -82,7 +82,7 @@ public HttpClient(final ApiConfiguration apiConfig) {
8282

8383
/**
8484
* Posts data to stackify
85-
*
85+
*
8686
* @param path REST path
8787
* @param jsonBytes JSON bytes
8888
* @return Response string
@@ -95,7 +95,7 @@ public String post(final String path, final byte[] jsonBytes) throws IOException
9595

9696
/**
9797
* Posts data to stackify
98-
*
98+
*
9999
* @param path REST path
100100
* @param jsonBytes JSON bytes
101101
* @param gzip True if the post should be gzipped, false otherwise
@@ -185,7 +185,7 @@ public String post(final String path, final byte[] jsonBytes, final boolean gzip
185185

186186
/**
187187
* Reads all remaining contents from the stream and closes it
188-
*
188+
*
189189
* @param stream The stream
190190
* @return The contents of the stream
191191
* @throws IOException

src/test/java/com/stackify/api/common/log/LogAppenderTest.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
/**
3232
* LogAppender JUnit Test
33-
*
33+
*
3434
* @author Eric Martin
3535
*/
3636
@RunWith(PowerMockRunner.class)
@@ -39,7 +39,7 @@ public class LogAppenderTest {
3939

4040
/**
4141
* testActivate
42-
*
42+
*
4343
* @throws Exception
4444
*/
4545
@Test
@@ -63,7 +63,7 @@ public void testActivate() throws Exception {
6363

6464
/**
6565
* testClose
66-
*
66+
*
6767
* @throws Exception
6868
*/
6969
@Test
@@ -89,7 +89,7 @@ public void testClose() throws Exception {
8989

9090
/**
9191
* testAppend
92-
*
92+
*
9393
* @throws Exception
9494
*/
9595
@Test
@@ -132,7 +132,7 @@ public void testAppend() throws Exception {
132132

133133
/**
134134
* testAppendWithoutActivate
135-
*
135+
*
136136
* @throws Exception
137137
*/
138138
@Test
@@ -155,7 +155,7 @@ public void testAppendWithoutActivate() throws Exception {
155155

156156
/**
157157
* testAppendInternalEvent
158-
*
158+
*
159159
* @throws Exception
160160
*/
161161
@Test

src/test/java/com/stackify/api/common/log/LogSenderTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
/**
3838
* LogSender JUnit Test
39-
*
39+
*
4040
* @author Eric Martin
4141
*/
4242
@RunWith(PowerMockRunner.class)
@@ -45,7 +45,7 @@ public class LogSenderTest {
4545

4646
/**
4747
* testSend
48-
*
48+
*
4949
* @throws Exception
5050
*/
5151
@Test
@@ -77,7 +77,7 @@ public void testSend() throws Exception {
7777

7878
/**
7979
* testSend
80-
*
80+
*
8181
* @throws Exception
8282
*/
8383
@Test

0 commit comments

Comments
 (0)