(final File file)
| 91 | } |
| 92 | |
| 93 | public static Supplier file(final File file) { |
| 94 | return new FileContentSupplier(file); |
| 95 | } |
| 96 | |
| 97 | public static Supplier fromStream(InputStream stream, long length) { |
| 98 | return new InputStreamContentSupplier(stream, length); |
no outgoing calls
no test coverage detected