From 06b2c787d377a42076d419cd8ad2a022f9c365c3 Mon Sep 17 00:00:00 2001 From: Max Dor Date: Sat, 22 Dec 2018 04:03:44 +0100 Subject: [PATCH] Remove unused reference --- .../io/kamax/mxisd/controller/app/v1/AppServiceController.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main/java/io/kamax/mxisd/controller/app/v1/AppServiceController.java b/src/main/java/io/kamax/mxisd/controller/app/v1/AppServiceController.java index 3fbbc2a..3db5c1f 100644 --- a/src/main/java/io/kamax/mxisd/controller/app/v1/AppServiceController.java +++ b/src/main/java/io/kamax/mxisd/controller/app/v1/AppServiceController.java @@ -25,7 +25,6 @@ import io.kamax.mxisd.as.AppServiceHandler; import io.kamax.mxisd.config.ListenerConfig; import io.kamax.mxisd.exception.HttpMatrixException; import io.kamax.mxisd.exception.NotAllowedException; -import io.kamax.mxisd.util.GsonParser; import org.apache.commons.lang.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -50,13 +49,11 @@ public class AppServiceController { private final ListenerConfig cfg; private final String notFoundBody; - private final GsonParser parser; private final AppServiceHandler handler; @Autowired public AppServiceController(ListenerConfig cfg, AppServiceHandler handler) { this.notFoundBody = GsonUtil.get().toJson(GsonUtil.makeObj("errcode", "io.kamax.mxisd.AS_NOT_FOUND")); - this.parser = new GsonParser(); this.cfg = cfg; this.handler = handler;