From 28e0e519916d1707b5ce9f5289ae548cf344d5be Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Thu, 26 Jan 2012 00:28:24 +0000 Subject: [PATCH] This isn't much of a transaction anymore, since r371. git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@1115 c613c5cb-e716-0410-b11b-feb51c14d237 --- .../threerings/whirled/zone/server/ZoneMoveHandler.java | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/main/java/com/threerings/whirled/zone/server/ZoneMoveHandler.java b/src/main/java/com/threerings/whirled/zone/server/ZoneMoveHandler.java index bebc700f..90ca146e 100644 --- a/src/main/java/com/threerings/whirled/zone/server/ZoneMoveHandler.java +++ b/src/main/java/com/threerings/whirled/zone/server/ZoneMoveHandler.java @@ -87,12 +87,7 @@ public class ZoneMoveHandler extends AbstractSceneMoveHandler PlaceConfig config = _locman.moveTo(_body, ploid); // now that we've moved, we can update the user object with the new scene and zone ids - _body.startTransaction(); - try { - ((ZonedBodyObject)_body).setZoneId(_summary.zoneId); - } finally { - _body.commitTransaction(); - } + ((ZonedBodyObject)_body).setZoneId(_summary.zoneId); // check to see if they need a newer version of the scene data ZoneService.ZoneMoveListener listener = (ZoneService.ZoneMoveListener)_listener;