Skip to content
This repository was archived by the owner on Jul 31, 2022. It is now read-only.

Commit 10786ce

Browse files
committed
fix dangling comma
1 parent 13e4a94 commit 10786ce

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/java/com/kttdevelopment/simplehttpserver/handler/TemporaryHandler.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,10 @@ public final void handle(final HttpExchange exchange) throws IOException{
6767
public String toString(){
6868
return
6969
"TemporaryHandler" + '{' +
70-
"handler" + '=' + handler.toString() + ", " +
70+
"handler" + '=' + handler.toString() +
7171
(hasExpiry
72-
? "initTime" + '=' + initTime + ", " +
72+
? ", " +
73+
"initTime" + '=' + initTime + ", " +
7374
"maxTime" + '=' + maxTime + ", " +
7475
"expiry" + '=' + expiry
7576
: ""

0 commit comments

Comments
 (0)