Skip to content

Commit

Permalink
remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Siedlerchr committed Nov 6, 2023
1 parent 878efac commit fcac446
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,7 @@ public URLDownload getUrlDownload(URL url) {
@Override
public Parser getParser() {
return inputStream -> {
// Read the API response.
JSONObject response = JsonReader.toJsonObject(inputStream);
// Parse the JSON response into a list of BibEntry objects.
List<BibEntry> entries = new ArrayList<>();
if (response.has("results")) {
JSONArray results = response.getJSONArray("results");
Expand All @@ -89,11 +87,6 @@ public Parser getParser() {
};
}

/**
* Gets he name of fetcher
*
* @return The fetcher name
*/
@Override
public String getName() {
return FETCHER_NAME;
Expand Down

0 comments on commit fcac446

Please sign in to comment.