Skip to content

Commit

Permalink
Fixing checkstyle errors
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbylight committed Sep 24, 2022
1 parent 23f541d commit 81232b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -695,10 +695,10 @@ public void setFoldIndicatorEnabled(boolean enabled) {
* Toggles the presentation of the fold region of this component.
* This method sets the icons used for fold regions to default values,
* amongst other configuration. To further customize those icons,
* see {@link #setFoldIcons(Icon, Icon)}.
* see {@link #setFoldIcons(FoldIndicatorIcon, FoldIndicatorIcon)}.
*
* @param style The new presentation style.
* @see #setFoldIcons(Icon, Icon)
* @see #setFoldIcons(FoldIndicatorIcon, FoldIndicatorIcon)
*/
public void setFoldIndicatorStyle(FoldIndicatorStyle style) {
if (foldIndicator != null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ private JMenuBar createMenuBar() {

menu = new JMenu("View");
JMenu foldStyleSubMenu = new JMenu("Fold Region Style");
JRadioButtonMenuItem classicStyleItem = new JRadioButtonMenuItem(new FoldStyleAction(FoldIndicatorStyle.CLASSIC));
JRadioButtonMenuItem classicStyleItem = new JRadioButtonMenuItem(
new FoldStyleAction(FoldIndicatorStyle.CLASSIC));
classicStyleItem.setSelected(true);
JRadioButtonMenuItem modernStyleItem = new JRadioButtonMenuItem(new FoldStyleAction(FoldIndicatorStyle.MODERN));
bg = new ButtonGroup();
Expand Down

0 comments on commit 81232b3

Please sign in to comment.