Skip to content

Commit

Permalink
Fixes violations for Checkstyle check
Browse files Browse the repository at this point in the history
  • Loading branch information
rainboyan committed Apr 25, 2023
1 parent d92f28f commit cd279f9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,23 +46,23 @@ public TagInvocationContext(String namespace, String tagName, Map attrs) {
}

public String getNamespace() {
return namespace;
return this.namespace;
}

public void setNamespace(String namespace) {
this.namespace = namespace;
}

public String getTagName() {
return tagName;
return this.tagName;
}

public void setTagName(String tagName) {
this.tagName = tagName;
}

public Map getAttrs() {
return attrs;
return this.attrs;
}

public void setAttrs(Map attrs) {
Expand Down

0 comments on commit cd279f9

Please sign in to comment.