Skip to content

Commit

Permalink
Merge pull request #13533 from BrentEaston/13509-ScenarioProps
Browse files Browse the repository at this point in the history
13509 - Prevent NoSuchMethod exception opening Scenario Options in Editor
  • Loading branch information
uckelman authored Aug 18, 2024
2 parents 0a0697a + 74da7fd commit df72f26
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 df72f26

Please sign in to comment.