Skip to content
Snippets Groups Projects
Commit 3c292c4f authored by tjc's avatar tjc
Browse files

remove synchronized on the read routines

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@16153 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 77121494
No related branches found
No related tags found
No related merge requests found
...@@ -126,7 +126,7 @@ public class FTPSeekableStream extends SeekableStream { ...@@ -126,7 +126,7 @@ public class FTPSeekableStream extends SeekableStream {
} }
@Override @Override
synchronized public int read(byte[] bytes, int offset, int length) public int read(byte[] bytes, int offset, int length)
throws IOException { throws IOException {
InputStream in = initStream(); InputStream in = initStream();
...@@ -199,7 +199,7 @@ public class FTPSeekableStream extends SeekableStream { ...@@ -199,7 +199,7 @@ public class FTPSeekableStream extends SeekableStream {
} }
@Override @Override
synchronized public int read() throws IOException { public int read() throws IOException {
logger.info("read"); logger.info("read");
InputStream in = initStream(); InputStream in = initStream();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment