提交 97b7586c authored 作者: Thomas Mueller Graf's avatar Thomas Mueller Graf

Remove debugging code

上级 12632db1
......@@ -5,8 +5,6 @@
*/
package org.h2.engine;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.util.ArrayList;
import org.h2.command.Parser;
import org.h2.message.DbException;
......@@ -37,8 +35,6 @@ public abstract class DbObjectBase implements DbObject {
private long modificationId;
private boolean temporary;
private String invalidateStackTrace;
/**
* Initialize some attributes of this object.
*
......@@ -141,10 +137,6 @@ public abstract class DbObjectBase implements DbObject {
database = null;
trace = null;
objectName = null;
StringWriter sw = new StringWriter();
PrintWriter pw = new PrintWriter(sw);
new Throwable().printStackTrace(pw);
invalidateStackTrace = sw.toString();
}
public final boolean isValid() {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论