Commit 8fe66651 authored by yanzg's avatar yanzg

将源码打包进jar包

parent 99cc3b31
...@@ -18,9 +18,9 @@ public class DbPrintExceptByMessage implements DbPrintSqlExcept { ...@@ -18,9 +18,9 @@ public class DbPrintExceptByMessage implements DbPrintSqlExcept {
@Override @Override
public boolean isPrintExcept(SqlInfo sqlInfo, long time, int row) { public boolean isPrintExcept(SqlInfo sqlInfo, long time, int row) {
if (sqlInfo == null || sqlInfo.getTargetClass().getPackage() == aPackage) { if (sqlInfo == null || sqlInfo.getTargetClass() == null) {
return true; return false;
} }
return false; return sqlInfo.getTargetClass().getPackage() == aPackage;
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment