Skip to content

Commit

Permalink
modify checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
Alonexc committed Nov 10, 2022
1 parent 57f8525 commit 7b604af
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public ShowListenClientByTopicHandler(EventMeshTCPServer eventMeshTCPServer) {
@Override
public void handle(HttpExchange httpExchange) throws IOException {
StringBuilder result = new StringBuilder();
try(OutputStream out = httpExchange.getResponseBody();) {
try (OutputStream out = httpExchange.getResponseBody()) {
String queryString = httpExchange.getRequestURI().getQuery();
Map<String, String> queryStringInfo = NetUtils.formData2Dic(queryString);
String topic = queryStringInfo.get(EventMeshConstants.MANAGE_TOPIC);
Expand Down

0 comments on commit 7b604af

Please sign in to comment.