Skip to content
This repository was archived by the owner on May 25, 2020. It is now read-only.

Commit b1a9b6f

Browse files
committed
Semicolon termination
1 parent f6d2d79 commit b1a9b6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

generators/app/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,11 +207,11 @@ module.exports = yeoman.Base.extend({
207207
this.auditedEntities = [];
208208

209209
this.entitiesToUpdate.forEach(function(entityName) {
210-
this.auditedEntities.push("\"" + entityName + "\"")
210+
this.auditedEntities.push("\"" + entityName + "\"");
211211
{
212212
// check if repositories are already annotated
213213
var uuidGeneratorAnnotation = '@GeneratedValue.*"UUIDGenerator"';
214-
var pattern = new RegExp(uuidGeneratorAnnotation, 'g')
214+
var pattern = new RegExp(uuidGeneratorAnnotation, 'g');
215215

216216
var content = this.fs.read(this.javaDir + 'domain/' + entityName + '.java', 'utf8');
217217

0 commit comments

Comments
 (0)