Skip to content

Commit

Permalink
style: spotless apply
Browse files Browse the repository at this point in the history
  • Loading branch information
miurahr committed Sep 14, 2024
1 parent fd95876 commit 03fd6d3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/test/java/org/omegat/swing/extra/TestOptionPane.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,17 @@ protected void onSetUp() {
Assume.assumeTrue(Arrays.stream(SUPPORTED)
.anyMatch(s -> Locale.getDefault().getLanguage().equals(s)));
ResourceBundle bundle = ResourceBundle.getBundle(EXTRA_BASIC);
buttonLabels = buildExpectations(bundle,
buttonLabels = buildExpectations(
bundle,
"OptionPane.yesButton.textAndMnemonic",
"OptionPane.noButton.textAndMnemonic",
"OptionPane.okButton.textAndMnemonic",
"OptionPane.cancelButton.textAndMnemonic"
);
titles = buildExpectations(bundle,
"OptionPane.cancelButton.textAndMnemonic");
titles = buildExpectations(
bundle,
"OptionPane.title.textAndMnemonic",
"OptionPane.inputDialog.titleAndMnemonic",
"OptionPane.messageDialog.titleAndMnemonic"
);
"OptionPane.messageDialog.titleAndMnemonic");
ExtraLocales.initialize();
parent = GuiActionRunner.execute(() -> {
JFrame frame = new JFrame();
Expand Down

0 comments on commit 03fd6d3

Please sign in to comment.