Removed unneeded and improper Runnable check.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3696 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2005-09-06 18:32:37 +00:00
parent 5502936535
commit dd44bb4f69
@@ -304,9 +304,7 @@ public class PresentsDObjectMgr
String cname;
// do some jiggery pokery to get more fine grained profiling
// details on certain "popular" unit types
if (unit instanceof Runnable) {
cname = StringUtil.shortClassName(unit);
} else if (unit instanceof Interval.RunQueueRunnable) {
if (unit instanceof Interval.RunQueueRunnable) {
Interval ival = ((Interval.RunQueueRunnable)unit).getInterval();
cname = StringUtil.shortClassName(ival);
} else if (unit instanceof InvocationRequestEvent) {