Refactored some code from the Transcoder class to a separate Repository class
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
@ -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) {
|
||||
|
Reference in New Issue
Block a user