From 1c8aadf9ff1346e665d0b44fedd35a4fe20d5bc1 Mon Sep 17 00:00:00 2001 From: Greg DiCristofaro Date: Fri, 3 Apr 2020 10:46:54 -0400 Subject: [PATCH] commenting fix --- Core/src/org/sleuthkit/autopsy/guiutils/WrapLayout.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/guiutils/WrapLayout.java b/Core/src/org/sleuthkit/autopsy/guiutils/WrapLayout.java index 0101180320..921aea586d 100644 --- a/Core/src/org/sleuthkit/autopsy/guiutils/WrapLayout.java +++ b/Core/src/org/sleuthkit/autopsy/guiutils/WrapLayout.java @@ -91,8 +91,10 @@ public class WrapLayout implements LayoutManager, java.io.Serializable { } /** - * Constructs a new WrapLayout with a left alignment and a - * default 0-unit horizontal and vertical gap. + * Constructs a new WrapLayout with a left alignment. + * + * @param vgap The vertical gap spacing between rows of components. + * @param hgap The horizontal gap spacing between components. */ public WrapLayout(int vgap, int hgap) { this.vgap = vgap;