Skip to content

Commit

Permalink
Add missing since tags in javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
Juuxel committed Dec 11, 2022
1 parent d76d6d4 commit 5d6f720
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@ public class WGridPanel extends WPanelWithInsets {

/**
* The horizontal gap between two grid cells.
* @since 6.4.0
*/
protected int horizontalGap = 0;

/**
* The vertical gap between two grid cells.
* @since 6.4.0
*/
protected int verticalGap = 0;

Expand All @@ -45,6 +47,7 @@ public WGridPanel() {}
*
* @param horizontalGap the horizontal gap between grid cells
* @param verticalGap the vertical gap between grid cells
* @since 6.4.0
*/
public WGridPanel setGaps(int horizontalGap, int verticalGap) {
if (!this.children.isEmpty()) {
Expand Down

0 comments on commit 5d6f720

Please sign in to comment.