From 41f3eea9b2b7bd74d5f125dedfe107ab5b0bed26 Mon Sep 17 00:00:00 2001 From: Alexey Ivanov Date: Thu, 27 Mar 2025 12:05:17 +0000 Subject: [PATCH] 8352624: Add missing {@code} to PassFailJFrame.Builder.splitUI Reviewed-by: serb, honkar --- test/jdk/java/awt/regtesthelpers/PassFailJFrame.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/jdk/java/awt/regtesthelpers/PassFailJFrame.java b/test/jdk/java/awt/regtesthelpers/PassFailJFrame.java index 5b825bb4c37..f7d9cd8840d 100644 --- a/test/jdk/java/awt/regtesthelpers/PassFailJFrame.java +++ b/test/jdk/java/awt/regtesthelpers/PassFailJFrame.java @@ -1714,7 +1714,7 @@ public final class PassFailJFrame { * * @throws IllegalStateException if a {@code PanelCreator} is * already set - * @throws IllegalArgumentException if {panelCreator} is {@code null} + * @throws IllegalArgumentException if {@code panelCreator} is {@code null} */ public Builder splitUI(PanelCreator panelCreator) { return splitUIRight(panelCreator); @@ -1731,7 +1731,7 @@ public final class PassFailJFrame { * * @throws IllegalStateException if a {@code PanelCreator} is * already set - * @throws IllegalArgumentException if {panelCreator} is {@code null} + * @throws IllegalArgumentException if {@code panelCreator} is {@code null} */ public Builder splitUIRight(PanelCreator panelCreator) { return splitUI(panelCreator, JSplitPane.HORIZONTAL_SPLIT); @@ -1748,7 +1748,7 @@ public final class PassFailJFrame { * * @throws IllegalStateException if a {@code PanelCreator} is * already set - * @throws IllegalArgumentException if {panelCreator} is {@code null} + * @throws IllegalArgumentException if {@code panelCreator} is {@code null} */ public Builder splitUIBottom(PanelCreator panelCreator) { return splitUI(panelCreator, JSplitPane.VERTICAL_SPLIT); @@ -1764,7 +1764,7 @@ public final class PassFailJFrame { * * @throws IllegalStateException if a {@code PanelCreator} is * already set - * @throws IllegalArgumentException if {panelCreator} is {@code null} + * @throws IllegalArgumentException if {@code panelCreator} is {@code null} */ private Builder splitUI(PanelCreator panelCreator, int splitUIOrientation) {