Skip to content

Commit

Permalink
Merge pull request #136
Browse files Browse the repository at this point in the history
Fix checkstyle
  • Loading branch information
andreysubbotin committed Aug 11, 2021
1 parent 383c006 commit b16bfc5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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(",")) + ")",
Expand Down

0 comments on commit b16bfc5

Please sign in to comment.