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

Improved error message.

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