Skip to content

Commit

Permalink
upgrade to globi-libs v0.19.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jhpoelen committed Nov 3, 2020
1 parent 65f9e31 commit 889bfe9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<description>Discover, cache and check species interaction data</description>

<properties>
<globi.version>0.19.2</globi.version>
<globi.version>0.19.4</globi.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.resourceEncoding>UTF-8</project.build.resourceEncoding>
<project.build.testResourceEncoding>UTF-8</project.build.testResourceEncoding>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@ public class DatasetProcessorForTSV implements DatasetProcessor {
public Dataset process(final Dataset dataset) {
return new Dataset() {

@Override
public void setExternalId(String externalId) {

}

@Override
public String getExternalId() {
return null;
}

@Override
public InputStream retrieve(URI resourceName) throws IOException {
return dataset.retrieve(resourceName);
Expand Down

0 comments on commit 889bfe9

Please sign in to comment.