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 486fce3 commit bb8f791Copy full SHA for bb8f791
src/main/java/org/scijava/io/handle/DummyHandle.java
@@ -64,23 +64,23 @@ public boolean isWritable() {
64
}
65
66
@Override
67
- public long offset() throws IOException {
+ public long offset() {
68
return offset;
69
70
71
72
- public void seek(final long pos) throws IOException {
+ public void seek(final long pos) {
73
if (pos > length()) setLength(pos);
74
offset = pos;
75
76
77
78
- public long length() throws IOException {
+ public long length() {
79
return length;
80
81
82
83
- public void setLength(final long length) throws IOException {
+ public void setLength(final long length) {
84
this.length = length;
85
86
0 commit comments