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

Commit b698ee6

Browse files
committed
oops typo
1 parent 3f8b07a commit b698ee6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/ktt/lib/httpserver/handler/PredicateHandler.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ public final void handle(final SimpleHttpExchange exchange) throws IOException{
5353

5454
@SuppressWarnings("StringBufferReplaceableByString")
5555
@Override
56-
public @param walk whether to use the inner directories or not){
56+
public String toString(){
5757
final StringBuilder OUT = new StringBuilder();
5858
OUT.append("PredicateHandler") .append("{");
59-
OUT.append("(true) handler") .append("= ") .append(T.toString()) .append(", ");
60-
OUT.append("(false) handler") .append("= ") .append(F.toString()) .append(", ");
61-
OUT.append("predicate") .append("= ") .append(predicate.toString());
59+
OUT.append("(true) handler") .append("=") .append(T.toString()) .append(", ");
60+
OUT.append("(false) handler") .append("=") .append(F.toString()) .append(", ");
61+
OUT.append("predicate") .append("=") .append(predicate.toString());
6262
OUT.append("}");
6363
return OUT.toString();
6464
}

0 commit comments

Comments
 (0)