Skip to content

Commit 285dc91

Browse files
committed
8352624: Add missing {@code} to PassFailJFrame.Builder.splitUI
Backport-of: 41f3eea9b2b7bd74d5f125dedfe107ab5b0bed26
1 parent adc0c00 commit 285dc91

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/jdk/java/awt/regtesthelpers/PassFailJFrame.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1714,7 +1714,7 @@ public Builder testUI(PanelCreator panelCreator) {
17141714
*
17151715
* @throws IllegalStateException if a {@code PanelCreator} is
17161716
* already set
1717-
* @throws IllegalArgumentException if {panelCreator} is {@code null}
1717+
* @throws IllegalArgumentException if {@code panelCreator} is {@code null}
17181718
*/
17191719
public Builder splitUI(PanelCreator panelCreator) {
17201720
return splitUIRight(panelCreator);
@@ -1731,7 +1731,7 @@ public Builder splitUI(PanelCreator panelCreator) {
17311731
*
17321732
* @throws IllegalStateException if a {@code PanelCreator} is
17331733
* already set
1734-
* @throws IllegalArgumentException if {panelCreator} is {@code null}
1734+
* @throws IllegalArgumentException if {@code panelCreator} is {@code null}
17351735
*/
17361736
public Builder splitUIRight(PanelCreator panelCreator) {
17371737
return splitUI(panelCreator, JSplitPane.HORIZONTAL_SPLIT);
@@ -1748,7 +1748,7 @@ public Builder splitUIRight(PanelCreator panelCreator) {
17481748
*
17491749
* @throws IllegalStateException if a {@code PanelCreator} is
17501750
* already set
1751-
* @throws IllegalArgumentException if {panelCreator} is {@code null}
1751+
* @throws IllegalArgumentException if {@code panelCreator} is {@code null}
17521752
*/
17531753
public Builder splitUIBottom(PanelCreator panelCreator) {
17541754
return splitUI(panelCreator, JSplitPane.VERTICAL_SPLIT);
@@ -1764,7 +1764,7 @@ public Builder splitUIBottom(PanelCreator panelCreator) {
17641764
*
17651765
* @throws IllegalStateException if a {@code PanelCreator} is
17661766
* already set
1767-
* @throws IllegalArgumentException if {panelCreator} is {@code null}
1767+
* @throws IllegalArgumentException if {@code panelCreator} is {@code null}
17681768
*/
17691769
private Builder splitUI(PanelCreator panelCreator,
17701770
int splitUIOrientation) {

0 commit comments

Comments
 (0)