fixed syntax error

This commit is contained in:
F481
2015-08-24 14:28:13 +02:00
parent 0261121d78
commit 3d89399b58

View File

@@ -496,13 +496,13 @@ public class DefaultGenerator extends AbstractGenerator implements Generator {
if (!authMethods.isEmpty()) {
co.authMethods = config.fromSecurity(authMethods);
}
catch (Exception ex) {
LOGGER.error("Error while trying to get Config from Operation for tag(" + tag + ")\n" //
+ "\tResource: " + httpMethod + " " + resourcePath + "\n"//
+ "\tOperation:" + operation + "\n" //
+ "\tDefinitions: " + swagger.getDefinitions() + "\n");
ex.printStackTrace();
}
}
catch (Exception ex) {
LOGGER.error("Error while trying to get Config from Operation for tag(" + tag + ")\n" //
+ "\tResource: " + httpMethod + " " + resourcePath + "\n"//
+ "\tOperation:" + operation + "\n" //
+ "\tDefinitions: " + swagger.getDefinitions() + "\n");
ex.printStackTrace();
}
}
}