Skip to content

Commit

Permalink
Updated tooltip javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
SpinyOwl committed Oct 29, 2017
1 parent ddf43ea commit b3d7e4f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/org/liquidengine/legui/component/Tooltip.java
Expand Up @@ -26,16 +26,16 @@ public Tooltip() {
/**
* Constructor.
*
* @param tooltip text to set
* @param tooltip text to set.
*/
public Tooltip(String tooltip) {
initialize(tooltip);
}

/**
* Used to initialize tooltip
* Used to initialize tooltip.
*
* @param text text to set
* @param text text to set.
*/
private void initialize(String text) {
this.textState = new TextState(text);
Expand Down

0 comments on commit b3d7e4f

Please sign in to comment.