This commit is contained in:
hyb1996
2017-05-02 11:27:04 +08:00
parent 0d39afccb2
commit 68706fbd98
71 changed files with 759 additions and 514 deletions

View File

@@ -0,0 +1,9 @@
package com.stardust.util;
/**
* Created by Stardust on 2017/5/1.
*/
public interface Supplier<T> {
T get();
}