Skip to content

Commit

Permalink
fix message
Browse files Browse the repository at this point in the history
  • Loading branch information
lindenb committed Oct 29, 2024
1 parent 190dc4d commit 280e49a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/htsjdk/tribble/gff/Gff3BaseData.java
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ public Optional<String> getUniqueAttribute(final String key) {
switch(atts.size()) {
case 0 : return Optional.empty();
case 1 : return Optional.of(atts.get(0));
default : throw new IllegalArgumentException("getAttr cannot be called with key="+key+" because it contains more than one value " + String.join(", ", atts));
default : throw new IllegalArgumentException("getUniqueAttribute cannot be called with key="+key+" because it contains more than one value " + String.join(", ", atts));
}
}

Expand Down

0 comments on commit 280e49a

Please sign in to comment.