Skip to content

Commit

Permalink
13509 - Prevent NoSuchMethod exception opening Scenario Options in Ed…
Browse files Browse the repository at this point in the history
…itor
  • Loading branch information
Brent committed Aug 14, 2024
1 parent 739643c commit 74da7fd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ public void setEnabled(boolean enabled) {
}
}

private static class AlignConfig implements ConfigurerFactory {
public static class AlignConfig implements ConfigurerFactory {
@Override
public Configurer getConfigurer(AutoConfigurable c, String key, String name) {
return new TranslatingStringEnumConfigurer(key, name,
Expand All @@ -700,7 +700,7 @@ public Configurer getConfigurer(AutoConfigurable c, String key, String name) {
}
}

private static class TextConfig implements ConfigurerFactory {
public static class TextConfig implements ConfigurerFactory {
@Override
public Configurer getConfigurer(AutoConfigurable c, String key, String name) {
final TextConfigurer t = new TextConfigurer(key, name);
Expand Down

0 comments on commit 74da7fd

Please sign in to comment.