Skip to content

Commit

Permalink
remove debug src
Browse files Browse the repository at this point in the history
  • Loading branch information
codingPF committed Feb 17, 2024
1 parent 0a316ac commit 8273e69
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 263 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,7 @@ private static Resolution getQualityForNumber(final int qualityIndicator) {
case 1 -> Resolution.SMALL;
case 3, 4 -> Resolution.HD;
case 5 -> Resolution.UHD;
case 2 -> Resolution.NORMAL;
default -> Resolution.NORMAL;
case 2, default -> Resolution.NORMAL;
};
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public NexxCloudSessionInitiationTask(final AbstractCrawler aCrawler) {
@Override
public Long call() {
final Gson gson = createGson();
/*

try(final Client client = createClient()) {
final WebTarget target =
client.target(FunkUrls.NEXX_CLOUD_SESSION_INIT.getAsString(crawler.getRuntimeConfig()));
Expand All @@ -55,7 +55,7 @@ public Long call() {
response.getStatus());
}
}
}*/
}
return null;
}

Expand Down

This file was deleted.

0 comments on commit 8273e69

Please sign in to comment.