diff --git a/src/java/com/threerings/presents/server/PresentsDObjectMgr.java b/src/java/com/threerings/presents/server/PresentsDObjectMgr.java index 48d2f05f7..d87483484 100644 --- a/src/java/com/threerings/presents/server/PresentsDObjectMgr.java +++ b/src/java/com/threerings/presents/server/PresentsDObjectMgr.java @@ -303,8 +303,8 @@ public class PresentsDObjectMgr String cname; // do some jiggery pokery to get more fine grained profiling // details on certain "popular" unit types - if (unit instanceof Interval.RunQueueRunnable) { - Interval ival = ((Interval.RunQueueRunnable)unit).getInterval(); + if (unit instanceof Interval.Runnable) { + Interval ival = ((Interval.Runnable)unit).getInterval(); cname = StringUtil.shortClassName(ival); } else if (unit instanceof InvocationRequestEvent) { InvocationRequestEvent ire = (InvocationRequestEvent)unit;