We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 545c18d commit a22ed41Copy full SHA for a22ed41
biojava-core/src/main/java/org/biojava/nbio/core/sequence/io/GenbankSequenceParser.java
@@ -386,7 +386,7 @@ private List<String[]> readSection(BufferedReader bufferedReader) {
386
currKey = m.group(2) == null ? (m.group(4) == null ? m
387
.group(6) : m.group(4)) : m.group(2);
388
currVal = new StringBuilder();
389
- // val = group(3) if group(2) not null, group(5) if
+ // val = group(3) if group(2) not null, group(5) if
390
// group(4) not null, "" otherwise, trimmed
391
currVal.append((m.group(2) == null ? (m.group(4) == null ? ""
392
: m.group(5))
0 commit comments