From 7c60cb5df204347a2d8db97b094bbadc97d1bad5 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Wed, 5 Dec 2001 07:38:54 +0000 Subject: [PATCH] Comment edit. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@744 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../threerings/whirled/spot/tools/EditableSpotSceneImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/com/threerings/whirled/spot/tools/EditableSpotSceneImpl.java b/src/java/com/threerings/whirled/spot/tools/EditableSpotSceneImpl.java index bccc4eac0..bfcf2afb5 100644 --- a/src/java/com/threerings/whirled/spot/tools/EditableSpotSceneImpl.java +++ b/src/java/com/threerings/whirled/spot/tools/EditableSpotSceneImpl.java @@ -1,5 +1,5 @@ // -// $Id: EditableSpotSceneImpl.java,v 1.5 2001/12/05 03:49:29 mdb Exp $ +// $Id: EditableSpotSceneImpl.java,v 1.6 2001/12/05 07:38:54 mdb Exp $ package com.threerings.whirled.tools.spot; @@ -148,7 +148,7 @@ public class EditableSpotSceneImpl // documentation inherited public void addLocation (Location loc) { - // add the delegate location to the end of the location array + // add the location to the end of the location array int lcount = _locations.length; Location[] nlocs = new Location[lcount+1]; System.arraycopy(_locations, 0, nlocs, 0, lcount);