Skip to content

Commit

Permalink
Added factory methods for HyperLinks, changed HyperLinkType visibilit…
Browse files Browse the repository at this point in the history
…y to package-private
  • Loading branch information
jakub.kowalczyk committed Nov 15, 2023
1 parent 67a2ad7 commit 6f6e22e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public HyperLink(String linkStr, String displayStr) {
* @param displayStr string which will displayed in hyperlink cell
* @param hyperLinkType identifies type of the hyperlink
*/
public HyperLink(String linkStr, String displayStr, HyperLinkType hyperLinkType) {
HyperLink(String linkStr, String displayStr, HyperLinkType hyperLinkType) {
this.linkStr = linkStr;
this.displayStr = displayStr;
this.hyperLinkType = hyperLinkType;
Expand Down

0 comments on commit 6f6e22e

Please sign in to comment.