Navigation Menu

Skip to content

Commit

Permalink
Put a semicolon at the end of a generated schema and an extra couple …
Browse files Browse the repository at this point in the history
…newlines
  • Loading branch information
gashcrumb committed Jul 30, 2013
1 parent 8a6fa1f commit eacc9db
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -36,7 +36,7 @@ public void execute() throws MojoExecutionException
getLog().info("Looking up schema for class " + clazz);

String targetFileName = this.classes.get(clazz);
String fileContents = "var " + clazz.replace('.', '_') + " = " + lookup.getSchemaForClass(clazz);
String fileContents = "var " + clazz.replace('.', '_') + " = " + lookup.getSchemaForClass(clazz) + ";\n\n";

File outputFile = new File(targetFileName);

Expand Down

0 comments on commit eacc9db

Please sign in to comment.