Fix Sonar Issues

Fixes gh-4300
This commit is contained in:
Rob Winch
2017-04-18 21:07:00 -05:00
parent 9d9aadb80f
commit 59a0ba285f
7 changed files with 13 additions and 12 deletions

View File

@@ -41,7 +41,7 @@ public abstract class AbstractElement {
protected AbstractElement() {
this.name = "/";
this.parent = null;
this.id = new Long(-1);
this.id = Long.valueOf(-1);
}
/**