#107 Improve JavaDoc for Lazy Loading example

This commit is contained in:
Ilkka Seppala
2015-08-19 22:09:54 +03:00
parent 48cb04f98a
commit add57d4066
3 changed files with 13 additions and 4 deletions

View File

@ -4,8 +4,8 @@ import java.util.function.Supplier;
/**
*
* This lazy loader is thread safe and more efficient than HolderThreadSafe.
* It utilizes Java 8 functional interface Supplier<T> as Heavy factory.
* This lazy loader is thread safe and more efficient than {@link HolderThreadSafe}.
* It utilizes Java 8 functional interface {@link Supplier<T>} as {@link Heavy} factory.
*
*/
public class Java8Holder {