RestApiServlet: Remove superfluous semicolon in try-with-resources
Change-Id: I87e6cc1fb6198fd9254e950d0811a0a585b97b21
This commit is contained in:
@@ -523,7 +523,7 @@ public class RestApiServlet extends HttpServlet {
|
||||
InstantiationException, InvocationTargetException, MethodNotAllowedException {
|
||||
if (isType(JSON_TYPE, req.getContentType())) {
|
||||
try (BufferedReader br = req.getReader();
|
||||
JsonReader json = new JsonReader(br);) {
|
||||
JsonReader json = new JsonReader(br)) {
|
||||
json.setLenient(true);
|
||||
|
||||
JsonToken first;
|
||||
|
Reference in New Issue
Block a user