Returns a ByteSource that reads from the given URL. @since 14.0
(URL url)
| 56 | |
| 57 | |
| 58 | public static ByteSource asByteSource(URL url) { |
| 59 | return new UrlByteSource(url); |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * A byte source that reads from a URL using {@link URL#openStream()}. |
no outgoing calls
no test coverage detected