Skip to content

Commit 06b5a0a

Browse files
committed
added missing @OverRide annotations
1 parent 2c5b30a commit 06b5a0a

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

dsf-bpe/dsf-bpe-process-api-v2/src/main/java/dev/dsf/bpe/v2/client/dsf/BinaryInputStream.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,71 +37,85 @@ public Range getRange()
3737
return range;
3838
}
3939

40+
@Override
4041
public int read() throws IOException
4142
{
4243
return delegate.read();
4344
}
4445

46+
@Override
4547
public int read(byte[] b) throws IOException
4648
{
4749
return delegate.read(b);
4850
}
4951

52+
@Override
5053
public int read(byte[] b, int off, int len) throws IOException
5154
{
5255
return delegate.read(b, off, len);
5356
}
5457

58+
@Override
5559
public byte[] readAllBytes() throws IOException
5660
{
5761
return delegate.readAllBytes();
5862
}
5963

64+
@Override
6065
public byte[] readNBytes(int len) throws IOException
6166
{
6267
return delegate.readNBytes(len);
6368
}
6469

70+
@Override
6571
public int readNBytes(byte[] b, int off, int len) throws IOException
6672
{
6773
return delegate.readNBytes(b, off, len);
6874
}
6975

76+
@Override
7077
public long skip(long n) throws IOException
7178
{
7279
return delegate.skip(n);
7380
}
7481

82+
@Override
7583
public void skipNBytes(long n) throws IOException
7684
{
7785
delegate.skipNBytes(n);
7886
}
7987

88+
@Override
8089
public int available() throws IOException
8190
{
8291
return delegate.available();
8392
}
8493

94+
@Override
8595
public void close() throws IOException
8696
{
8797
delegate.close();
8898
}
8999

100+
@Override
90101
public void mark(int readlimit)
91102
{
92103
delegate.mark(readlimit);
93104
}
94105

106+
@Override
95107
public void reset() throws IOException
96108
{
97109
delegate.reset();
98110
}
99111

112+
@Override
100113
public boolean markSupported()
101114
{
102115
return delegate.markSupported();
103116
}
104117

118+
@Override
105119
public long transferTo(OutputStream out) throws IOException
106120
{
107121
return delegate.transferTo(out);

dsf-fhir/dsf-fhir-webservice-client/src/main/java/dev/dsf/fhir/client/BinaryInputStream.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,71 +37,85 @@ public Range getRange()
3737
return range;
3838
}
3939

40+
@Override
4041
public int read() throws IOException
4142
{
4243
return delegate.read();
4344
}
4445

46+
@Override
4547
public int read(byte[] b) throws IOException
4648
{
4749
return delegate.read(b);
4850
}
4951

52+
@Override
5053
public int read(byte[] b, int off, int len) throws IOException
5154
{
5255
return delegate.read(b, off, len);
5356
}
5457

58+
@Override
5559
public byte[] readAllBytes() throws IOException
5660
{
5761
return delegate.readAllBytes();
5862
}
5963

64+
@Override
6065
public byte[] readNBytes(int len) throws IOException
6166
{
6267
return delegate.readNBytes(len);
6368
}
6469

70+
@Override
6571
public int readNBytes(byte[] b, int off, int len) throws IOException
6672
{
6773
return delegate.readNBytes(b, off, len);
6874
}
6975

76+
@Override
7077
public long skip(long n) throws IOException
7178
{
7279
return delegate.skip(n);
7380
}
7481

82+
@Override
7583
public void skipNBytes(long n) throws IOException
7684
{
7785
delegate.skipNBytes(n);
7886
}
7987

88+
@Override
8089
public int available() throws IOException
8190
{
8291
return delegate.available();
8392
}
8493

94+
@Override
8595
public void close() throws IOException
8696
{
8797
delegate.close();
8898
}
8999

100+
@Override
90101
public void mark(int readlimit)
91102
{
92103
delegate.mark(readlimit);
93104
}
94105

106+
@Override
95107
public void reset() throws IOException
96108
{
97109
delegate.reset();
98110
}
99111

112+
@Override
100113
public boolean markSupported()
101114
{
102115
return delegate.markSupported();
103116
}
104117

118+
@Override
105119
public long transferTo(OutputStream out) throws IOException
106120
{
107121
return delegate.transferTo(out);

0 commit comments

Comments
 (0)