提交 7aed5785 authored 作者: Thomas Mueller's avatar Thomas Mueller

Improved error message.

上级 57386bfa
......@@ -238,8 +238,9 @@ public class CacheLRU implements Cache {
removeFromLinkedList(rec);
if (SysProperties.CHECK) {
rec.chained = null;
if (find(pos) != null) {
Message.throwInternalError("not removed!");
CacheObject o = find(pos);
if (o != null) {
Message.throwInternalError("not removed: " + o);
}
}
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论