Skip to content

Commit b342b92

Browse files
committed
better management of not implemented methods
1 parent e0e6ce4 commit b342b92

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • biojava-core/src/main/java/org/biojava/nbio/core/sequence/location

biojava-core/src/main/java/org/biojava/nbio/core/sequence/location/InsdcParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ public Location parse(String locationString) throws ParserException {
174174
*/
175175
public List<AbstractLocation> parse(Reader reader) throws IOException, ParserException {
176176
// use parse(String s) instead!
177-
return null;
177+
throw new UnsupportedOperationException("Not implemented yet.");
178178
}
179179

180180
private List<Location> parseLocationString(String string, int versus) throws ParserException {

0 commit comments

Comments
 (0)