minor fixes

This commit is contained in:
Alexander Karpov 2024-09-17 02:12:52 +03:00
parent 4d21b4705e
commit 1c5cf3097c

View File

@ -2,7 +2,6 @@ import com.fastcgi.FCGIInterface;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.util.HashMap;
import java.util.Map;
import java.io.BufferedReader;
import java.io.InputStreamReader;
@ -84,7 +83,7 @@ public class PointCheckerServer {
System.out.printf((RESPONSE_TEMPLATE) + "%n", jsonDump.getBytes(StandardCharsets.UTF_8).length, jsonDump);
}
private static Map<String, String> parseParams(String data) throws Exception {
private static Map<String, String> parseParams(String data) {
return Params.parse(data);
}
}