Skip to content

Commit 3084c4e

Browse files
authored
Merge pull request #1151 from quickfix-j/codegen-typo
fixed minor typo in `GenerateMojo`
2 parents e248ee4 + a9ebd4a commit 3084c4e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

quickfixj-codegenerator/src/main/java/org/quickfixj/codegenerator/GenerateMojo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public void execute() throws MojoExecutionException {
118118
try {
119119
generator = new MavenMessageCodeGenerator();
120120
if (getLog().isInfoEnabled()) {
121-
getLog().info("Successfully created an instance of the QuickFIX source generator");
121+
getLog().info("Successfully created an instance of the QuickFIX/J source generator");
122122
}
123123
generator.setLog(getLog());
124124

@@ -146,7 +146,7 @@ public void execute() throws MojoExecutionException {
146146
task.setDecimalGenerated(decimal);
147147
generator.generate(task);
148148
} catch (Throwable t) {
149-
throw new MojoExecutionException("QuickFIX code generator execution failed", t);
149+
throw new MojoExecutionException("QuickFIX/J code generator execution failed", t);
150150
}
151151

152152
if (project != null) {

0 commit comments

Comments
 (0)