Skip to content

Commit

Permalink
Disable deprecation warnings by default
Browse files Browse the repository at this point in the history
- Disabled deprecation warnings by default
  • Loading branch information
jackassmc committed Jun 27, 2022
1 parent b55be3e commit e2d9281
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class ModMenuConfig {
public static final BooleanConfigOption MODIFY_GAME_MENU = new BooleanConfigOption("modify_game_menu", true);
public static final BooleanConfigOption HIDE_CONFIG_BUTTONS = new BooleanConfigOption("hide_config_buttons", false);
public static final StringSetConfigOption HIDDEN_MODS = new StringSetConfigOption("hidden_mods", new HashSet<>());
public static final BooleanConfigOption LOG_DEPRECATION_WARNINGS = new BooleanConfigOption("log_deprecation_warnings", true);
public static final BooleanConfigOption LOG_DEPRECATION_WARNINGS = new BooleanConfigOption("log_deprecation_warnings", false);

public static final Set<String> HIDDEN_OPTIONS = Stream.of(
"MODIFY_TITLE_SCREEN",
Expand Down

0 comments on commit e2d9281

Please sign in to comment.