Skip to content

Commit 2e7e452

Browse files
committed
remove souts
1 parent d8acb47 commit 2e7e452

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/wiztools/anyurlhttpserver/AnyUrlHttpServerMain.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public static void main(String[] args) throws Exception {
7676
if((sepIdx > 0) && (sepIdx < headerLine.length())) {
7777
final String header = headerLine.substring(0, sepIdx);
7878
final String value = headerLine.substring(sepIdx + 1, headerLine.length());
79-
System.out.printf("\nHeader: Value => %s:%s\n", header, value);
79+
// System.out.printf("\nHeader: Value => %s:%s\n", header, value);
8080
headers.put(header, value);
8181
}
8282
}

0 commit comments

Comments
 (0)