Commit f85c1d02 authored by yanzg's avatar yanzg

设置打包时可以通过GIT查看源码

parent de4d0dd6
...@@ -16,7 +16,8 @@ public abstract class DataDaoKey<T> implements DataDaoKeyBase<T> { ...@@ -16,7 +16,8 @@ public abstract class DataDaoKey<T> implements DataDaoKeyBase<T> {
* @param now * @param now
*/ */
@Override @Override
public void set(T history, T now) { public boolean set(T history, T now) {
ObjectHelper.writeWithFrom(history, now); ObjectHelper.writeWithFrom(history, now);
return true;
} }
} }
...@@ -21,5 +21,5 @@ public interface DataDaoKeyBase<T> { ...@@ -21,5 +21,5 @@ public interface DataDaoKeyBase<T> {
* @param history * @param history
* @param now * @param now
*/ */
void set(T history, T now); boolean set(T history, T now);
} }
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