Skip to content

Commit

Permalink
limit constructor visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
vladak committed Dec 8, 2023
1 parent e748434 commit 7c3f797
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -288,11 +288,11 @@ public int getLineEnd() {
*/
private transient boolean used;

public Tag() {
protected Tag() {
this(0, null, null, null, null, null, 0, 0);
}

public Tag(int line, String symbol, String type, String text,
protected Tag(int line, String symbol, String type, String text,
String namespace, String signature, int lineStart,
int lineEnd) {
this.line = line;
Expand Down

0 comments on commit 7c3f797

Please sign in to comment.