Changed SWGNameGenerator to use StringBuffer for name generation and fixed some small issues in other classes

This commit is contained in:
Waverunner
2015-06-19 16:55:24 -04:00
parent 754bd804ff
commit 2ff79ceef8
6 changed files with 32 additions and 23 deletions
+1 -1
View File
@@ -478,7 +478,7 @@ public abstract class SWGObject implements Serializable, Comparable<SWGObject> {
}
public int getMaxContainerSize() {
return Integer.valueOf(templateAttributes.get("containerVolumeLimit").toString());
return Integer.parseInt(templateAttributes.get("containerVolumeLimit").toString());
}
public void setBuildout(boolean buildout) {