Use new Interval.Runnable interface name.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3728 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2005-10-12 21:02:18 +00:00
parent 078e131c16
commit bd7c2caab9
@@ -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;