Skip to content

Commit

Permalink
fixed checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
calixtus committed Aug 1, 2022
1 parent 468bae1 commit 7eb0d58
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
package org.jabref.logic.importer.fetcher;

import java.io.IOException;
import java.net.URL;
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
import java.util.Collections;
import java.util.List;
import java.util.Optional;

import org.jabref.logic.importer.FetcherException;
import org.jabref.logic.importer.ImportFormatPreferences;
import org.jabref.logic.importer.SearchBasedFetcher;
import org.jabref.model.entry.BibEntry;
Expand Down Expand Up @@ -100,16 +98,16 @@ public String getTestJournal() {

@Disabled("jstor does not support search only based on year")
@Override
public void supportsYearRangeSearch() throws Exception {
public void supportsYearRangeSearch() {
}

@Disabled("jstor does not provide articles with journals")
@Override
public void supportsJournalSearch() throws Exception {
public void supportsJournalSearch() {
}

@Disabled("jstor does not support search only based on year")
@Override
public void supportsYearSearch() throws Exception {
public void supportsYearSearch() {
}
}

0 comments on commit 7eb0d58

Please sign in to comment.