Skip to content

Commit 1933135

Browse files
committed
Fix minor code style issues
1 parent 95a6417 commit 1933135

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

library/src/main/java/me/proxer/library/api/apps/ErrorLogEndpoint.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ public final class ErrorLogEndpoint implements Endpoint<Void> {
3333
this.message = message;
3434
}
3535

36+
/**
37+
* {@inheritDoc}
38+
*/
3639
@Override
3740
public ProxerCall<Void> build() {
3841
return internalApi.errorLog(id, message, anonym);

library/src/test/java/me/proxer/library/api/apps/ErrorLogEndpointTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ public void testParameters() throws IOException, ProxerException, InterruptedExc
4545

4646
assertThat(server.takeRequest().getBody().readUtf8()).isEqualTo("id=3&message=test%20message&anonym=false");
4747
}
48-
}
48+
}

0 commit comments

Comments
 (0)