Refactored some code from the Transcoder class to a separate Repository class
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2022-05-06 02:47:56 -04:00
parent b049581632
commit a977ff8cfe
5 changed files with 100 additions and 58 deletions

View File

@ -31,7 +31,7 @@ public class Config {
}
public int getInt(String key) {
return Objects.requireNonNull(this.result.getDouble(key)).intValue();
return Objects.requireNonNull(this.result.getLong(key)).intValue();
}
public boolean contains(String key) {