Commit b112a351 by amateur

1

1 parent ba9fd989
...@@ -60,7 +60,6 @@ public abstract class ObjectBox<T> { ...@@ -60,7 +60,6 @@ public abstract class ObjectBox<T> {
public static synchronized void put(DataEntity ...data) { public static synchronized void put(DataEntity ...data) {
for (DataEntity item : data) { for (DataEntity item : data) {
DataEntity entity = findByName(item.getName()); DataEntity entity = findByName(item.getName());
System.out.println("entity is null =========>>>>" + (null == entity));
if (null != entity) { if (null != entity) {
entity.setUpdateDate(new Date()); entity.setUpdateDate(new Date());
entity.setValue(item.getValue()); entity.setValue(item.getValue());
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!