This commit is contained in:
Phillip Webb
2016-01-27 16:01:56 -08:00
parent 9065ddd857
commit f276ff4bd0
15 changed files with 57 additions and 47 deletions

View File

@@ -159,8 +159,10 @@ public class DependencyManagementBomTransformation
}
private void handleMalformedDependency(Expression expression) {
Message message = createSyntaxErrorMessage(String.format(
"The string must be of the form \"group:module:version\"%n"), expression);
Message message = createSyntaxErrorMessage(
String.format(
"The string must be of the form \"group:module:version\"%n"),
expression);
getSourceUnit().getErrorCollector().addErrorAndContinue(message);
}