Skip to content

Commit d483bba

Browse files
committed
Javadoc fix: errors in ws module
1 parent bb07329 commit d483bba

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ public class MapToStringTransformer {
4141
/**
4242
* Creates {@code MapToStringTransformer} with defaults:
4343
*
44-
* <pre>
44+
* <pre>{@code
4545
* mappingSequence = "=";
4646
* separatorSequence = "&";
4747
* nullValue = "null";
48-
* </pre>
48+
* }</pre>
4949
*/
5050
public MapToStringTransformer() {
5151
this("=", "&", "null");
@@ -76,7 +76,7 @@ public MapToStringTransformer(String mappingSequence, String separatorSequence,
7676
* <p>
7777
* For example, if we have a map with two entries: {@code ("key1", "1")} and
7878
* {@code ("key2", "2")} this method would return {@code "key1=1&key2=2"} if
79-
* {@code mappingSequence} is "=" and separator sequence is "&";
79+
* {@code mappingSequence} is "=" and separator sequence is "&amp;";
8080
*
8181
* @param map map of arguments
8282
* @return String resulting string

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,9 @@ public String getBlastDatabase() {
137137
/**
138138
* Sets the database to be used with blastall
139139
* <p>
140-
* A list of available databases can be acquired by calling {@link NCBIQBlastService#printRemoteBlastInfo()}
141-
* <p>
142140
* Blastall equivalent: -d
143141
*
144-
* @param db : a valid name to a NCBI blastable database
142+
* @param database a valid name to a NCBI blastable database
145143
*/
146144
public void setBlastDatabase(String database) {
147145
setAlignmentOption(DATABASE, database);

0 commit comments

Comments
 (0)