Removed extra output from ObjectManager

This commit is contained in:
Obique PSWG
2015-10-11 10:33:57 -05:00
parent a36bed284a
commit 2636933b71
-4
View File
@@ -140,7 +140,6 @@ public class ObjectManager extends Manager {
}
private void loadClientObjects() {
long start = System.nanoTime();
for (SWGObject obj : clientBuildoutService.loadClientObjects().values()) {
synchronized (objectMap) {
if (obj.getObjectId() >= maxObjectId) {
@@ -150,9 +149,6 @@ public class ObjectManager extends Manager {
objectMap.put(obj.getObjectId(), obj);
new ObjectCreatedIntent(obj).broadcast();
}
double loadTime = (System.nanoTime() - start) / 1E6;
System.out.printf("ClientObjectLoader: Finished loading client objects. Time: %fms%n", loadTime);
Log.i("ClientObjectLoader", "Finished loading client objects. Time: %fms", loadTime);
}
private void loadObject(SWGObject obj) {