RestApiServlet: Remove superfluous semicolon in try-with-resources

Change-Id: I87e6cc1fb6198fd9254e950d0811a0a585b97b21
This commit is contained in:
David Ostrovsky
2015-06-24 08:11:53 +02:00
parent 182fcafdfe
commit 213a7d365f

View File

@@ -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;