Skip to content

Commit

Permalink
Merge pull request #136 from Suwayomi/change-ignore-keyword
Browse files Browse the repository at this point in the history
Fixes comments with a wrong keyword for static analysis exceptions
  • Loading branch information
aless2003 authored Jul 10, 2024
2 parents 7151341 + 0313b00 commit 662f993
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public String toString() {
* or greater than the specified chapter.
*/
@Override
public int compareTo(@NotNull Chapter o) { // skipqc: JAVA-W1056
public int compareTo(@NotNull Chapter o) { // skipcq: JAVA-W1056
if (Objects.equals(this, o)) {
return 0;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ private void startServerCheck() {
serverChecker = Executors.newSingleThreadScheduledExecutor();
startChecker = Executors.newSingleThreadScheduledExecutor();

// skipqc: JAVA-W1087
// skipcq: JAVA-W1087
startChecker.scheduleAtFixedRate(this::checkIfServerIsRunning, 0, 5, TimeUnit.SECONDS);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ private void searchSource(String query, Source source) {

List<Manga> mangaList = new ArrayList<>();

// skipqc: JAVA-E0214
// skipcq: JAVA-E0214
for (int i = 1; hasNext; i++) {
SourceSearchResult searchResponse;
try {
Expand Down

0 comments on commit 662f993

Please sign in to comment.