consistent indentation (spaces, not tabs)

This commit is contained in:
Adrian Moos 2015-09-22 18:08:47 +02:00
parent d4a94fbf52
commit 66dee928d2
2 changed files with 3 additions and 3 deletions

View File

@ -166,7 +166,7 @@ public class CodeGenMojo extends AbstractMojo {
try {
new DefaultGenerator().opts(input).generate();
} catch (Exception e) {
// Maven logs exceptions thrown by plugins only if invoked with -e
// Maven logs exceptions thrown by plugins only if invoked with -e
// I find it annoying to jump through hoops to get basic diagnostic information,
// so let's log it in any case:
getLog().error(e);

View File

@ -511,8 +511,8 @@ public class DefaultGenerator extends AbstractGenerator implements Generator {
}
}
catch (Exception ex) {
String msg = "Could not process operation:\n" //
+ " Tag: " + tag + "\n"//
String msg = "Could not process operation:\n" //
+ " Tag: " + tag + "\n"//
+ " Operation: " + operation.getOperationId() + "\n" //
+ " Resource: " + httpMethod + " " + resourcePath + "\n"//
+ " Definitions: " + swagger.getDefinitions();