Compat version of java.util.function.Supplier @param the type of the input to the operation
| 21 | * @param <T> the type of the input to the operation |
| 22 | */ |
| 23 | public interface Supplier<T> { |
| 24 | |
| 25 | /** |
| 26 | * Gets a result. |
| 27 | * |
| 28 | * @return a result |
| 29 | */ |
| 30 | T get(); |
| 31 | } |
no outgoing calls
no test coverage detected