We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3569b55 commit a5b8a17Copy full SHA for a5b8a17
pom.xml
@@ -10,7 +10,7 @@
10
</parent>
11
12
<artifactId>scijava-io-http</artifactId>
13
- <version>0.2.2-SNAPSHOT</version>
+ <version>0.3.0-SNAPSHOT</version>
14
15
<name>SciJava I/O: HTTP</name>
16
<description>SciJava I/O support for HTTP/HTTPS.</description>
src/main/java/org/scijava/io/http/HTTPHandle.java
@@ -69,6 +69,14 @@ public class HTTPHandle extends AbstractSeekableStreamHandle<HTTPLocation> {
69
/** cache for the length of the stream */
70
private long length = -1l;
71
72
+ // -- Constructors --
73
+
74
+ public HTTPHandle() { }
75
76
+ public HTTPHandle(final HTTPLocation location) {
77
+ set(location);
78
+ }
79
80
// -- StreamHandle methods --
81
82
@Override
0 commit comments