Skip to content

Commit

Permalink
Update Javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
augustd committed Jan 18, 2020
1 parent 8b3b2ea commit af2fea4
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/main/java/com/codemagi/burp/ui/BurpTabbedPane.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ public class BurpTabbedPane extends JTabbedPane {
/**
* Add a new re-nameable, closable tab to the tabbed pane.
*
* @param name
* @param component
* @return
* @param name The name of the tab
* @param component The Component to display when the tab is active
* @return The Component that was added
*/
@Override
public Component add(String name, Component component) {
Expand All @@ -42,9 +42,8 @@ public Component add(String name, Component component) {
* NOTE: There can be only one <i>last tab</i>. Calling this method again
* will replace the one previously added.
*
* @param name
* @param component
* @return
* @param name The name of the tab
* @param component The Component to display when the tab is active
*/
public void addLast(String name, Component component) {
if (hasLast) {
Expand Down

0 comments on commit af2fea4

Please sign in to comment.