Chat Tutorial in NetBeans/Server: Difference between revisions

Jump to navigation Jump to search
Content deleted Content added
imported>SimonSmall
imported>Hendrik Brummermann
World.java: added missing call to world.initialize() as reported by maxgmer
 
(5 intermediate revisions by one other user not shown)
Line 57: Line 57:
if (instance == null) {
if (instance == null) {
instance = new World();
instance = new World();
instance.initialize()
}
}
return instance;
return instance;