made LazyInitializer a @FunctionalIterface to enable java8 sugar. #652

Merged
merged 1 commit into from Jun 28, 2016
Jump to file or symbol
Failed to load files and symbols.
+1 −0
Split
@@ -28,6 +28,7 @@ public synchronized T get() {
}
/** Describes how to build the instance of the lazy object. */
+ @FunctionalInterface
public interface LazyInitializer<T> {
/** Returns the desired object instance. */
T make();