diff --git a/modules/rest-api/src/com/haulmont/addon/restapi/api/service/ServicesControllerManager.java b/modules/rest-api/src/com/haulmont/addon/restapi/api/service/ServicesControllerManager.java index cb6e6bc..ba19ae2 100644 --- a/modules/rest-api/src/com/haulmont/addon/restapi/api/service/ServicesControllerManager.java +++ b/modules/rest-api/src/com/haulmont/addon/restapi/api/service/ServicesControllerManager.java @@ -114,7 +114,8 @@ protected ServiceCallResult _invokeServiceMethod(String serviceName, String modelVersion, HttpMethod paramHttpMethod) throws Throwable { Object service = AppBeans.get(serviceName); - RestServicesConfiguration.RestMethodInfo restMethodInfo = restServicesConfiguration.getRestMethodInfo(serviceName, methodName, paramNames, paramHttpMethod.name()); + RestServicesConfiguration.RestMethodInfo restMethodInfo = restServicesConfiguration.getRestMethodInfo(serviceName, + methodName, paramNames, paramHttpMethod.name()); if (restMethodInfo == null) { throw new RestAPIException("Service method not found", serviceName + "." + methodName + "(" + paramNames.stream().collect(Collectors.joining(",")) + ")",