X Tutup
Skip to content

Commit 8676f44

Browse files
committed
Fixing #369, also removing some warnings
1 parent 523898f commit 8676f44

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

biojava-ws/src/main/java/org/biojava/nbio/ws/alignment/qblast/NCBIQBlastService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ private URLConnection setQBlastServiceProperties(URLConnection conn) {
356356
conn.setRequestProperty("User-Agent", "Biojava/NCBIQBlastService");
357357
conn.setRequestProperty("Connection", "Keep-Alive");
358358
conn.setRequestProperty("Content-type", "application/x-www-form-urlencoded");
359-
conn.setRequestProperty("Content-length", "2000");
359+
conn.setRequestProperty("Content-length", "200");
360360
return conn;
361361
}
362362

biojava-ws/src/main/java/org/biojava/nbio/ws/hmmer/RemoteHmmerScan.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
import java.io.*;
2828
import java.net.HttpURLConnection;
2929
import java.net.URL;
30-
import java.net.URLEncoder;
3130
import java.util.SortedSet;
3231
import java.util.TreeSet;
3332

0 commit comments

Comments
 (0)
X Tutup