浏览代码

jfinal 3.6

James 7 年之前
父节点
当前提交
9631285063
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/main/java/com/jfinal/plugin/activerecord/Model.java

+ 1 - 1
src/main/java/com/jfinal/plugin/activerecord/Model.java

@@ -571,7 +571,7 @@ public abstract class Model<M extends Model> implements Serializable {
 	public boolean delete() {
 		Table table = _getTable();
 		String[] pKeys = table.getPrimaryKey();
-		if (pKeys.length == 1) {
+		if (pKeys.length == 1) {	// 优化:主键大概率只有一个
 			Object id = attrs.get(pKeys[0]);
 			if (id == null)
 				throw new ActiveRecordException("Primary key " + pKeys[0] + " can not be null");