Allow wrappers for Arguments by making the Map protected

This commit is contained in:
themode 2021-01-02 17:11:27 +01:00
parent 8155845c90
commit bfad3b8d7c

View File

@ -33,7 +33,7 @@ import java.util.Map;
*/
public final class Arguments {
private Map<String, Object> args = new HashMap<>();
protected Map<String, Object> args = new HashMap<>();
public boolean getBoolean(@NotNull String id) {
return (boolean) getObject(id);