提交 8e936302 编写于 作者: S swamyv

6614556: null location for MonitorContendedEnterEvent

Reviewed-by: jjh
上级 09296ee2
...@@ -208,8 +208,9 @@ public class EventSetImpl extends ArrayList<Event> implements EventSet { ...@@ -208,8 +208,9 @@ public class EventSetImpl extends ArrayList<Event> implements EventSet {
} }
public String toString() { public String toString() {
return eventName() + "@" + location().toString() + return eventName() + "@" +
" in thread " + thread().name(); ((location() == null) ? " null" : location().toString()) +
" in thread " + thread().name();
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册