Skip to content

Commit 4ee01d4

Browse files
committed
GenericInsdcHeaderFormat: Fixed formatting codes.
1 parent 805c286 commit 4ee01d4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

biojava-core/src/main/java/org/biojava/nbio/core/sequence/io/GenericInsdcHeaderFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ private String _insdc_feature_location_string(FeatureInterface<AbstractSequence<
186186
if(f.getLocations().getStrand() != Strand.NEGATIVE) {
187187
StringBuilder sb = new StringBuilder();
188188
Formatter formatter = new Formatter(sb,Locale.US);
189-
formatter.format("Inconsistent strands: %r for parent, %r for child", feature.getLocations().getStrand(), f.getLocations().getStrand());
189+
formatter.format("Inconsistent strands: %s for parent, %s for child", feature.getLocations().getStrand(), f.getLocations().getStrand());
190190
String output = formatter.toString();
191191
formatter.close();
192192
throw new RuntimeException(output);

0 commit comments

Comments
 (0)