diff --git a/src/java/com/threerings/crowd/server/BodyLocal.java b/src/java/com/threerings/crowd/server/BodyLocal.java index 4e2477d9b..27973da21 100644 --- a/src/java/com/threerings/crowd/server/BodyLocal.java +++ b/src/java/com/threerings/crowd/server/BodyLocal.java @@ -23,14 +23,16 @@ package com.threerings.crowd.server; import com.threerings.presents.server.ClientLocal; +import com.threerings.crowd.data.BodyObject; + /** * Contains information tracked for each body by the server. */ public class BodyLocal extends ClientLocal { /** - * The time at which the {@link #status} field was last updated. This is only available on the - * server. + * The time at which the {@link BodyObject#status} field was last updated. + * This is only available on the server. */ public long statusTime; } diff --git a/src/java/com/threerings/presents/dobj/DObject.java b/src/java/com/threerings/presents/dobj/DObject.java index 94e556bb1..2c8c6b476 100644 --- a/src/java/com/threerings/presents/dobj/DObject.java +++ b/src/java/com/threerings/presents/dobj/DObject.java @@ -654,7 +654,7 @@ public class DObject } /** - * Retrieves a local attribute for the supplied key. See {@link #setLocalAttribute} for + * Retrieves a local attribute for the supplied key. See {@link #setLocal} for * information on key polymorphism. Returns null if no attribute is found that matches the * supplied key. */ diff --git a/src/java/com/threerings/presents/util/FutureResult.java b/src/java/com/threerings/presents/util/FutureResult.java index 23687b426..67d0fe490 100644 --- a/src/java/com/threerings/presents/util/FutureResult.java +++ b/src/java/com/threerings/presents/util/FutureResult.java @@ -24,6 +24,7 @@ package com.threerings.presents.util; import java.util.concurrent.CancellationException; import java.util.concurrent.ExecutionException; import java.util.concurrent.Future; +import java.util.concurrent.FutureTask; import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeoutException; import java.util.concurrent.locks.AbstractQueuedSynchronizer;