Skip to content

Commit

Permalink
Fix static
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor committed Sep 29, 2024
1 parent 0f3b387 commit c649240
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/main/java/org/jabref/logic/importer/FetcherException.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,8 @@

public class FetcherException extends JabRefException {
private static final Logger LOGGER = LoggerFactory.getLogger(FetcherException.class);

Pattern API_KEY_PATTERN = Pattern.compile("(?i)(api|key|api[-_]?key)=[^&]*");

String REDACTED_STRING = "[REDACTED]";
private static final Pattern API_KEY_PATTERN = Pattern.compile("(?i)(api|key|api[-_]?key)=[^&]*");
private static String REDACTED_STRING = "[REDACTED]";

private final String url;
private final SimpleHttpResponse httpResponse;
Expand Down

0 comments on commit c649240

Please sign in to comment.