Use correct access level for overwrites
This commit is contained in:
parent
4a7bcbfd38
commit
57b7c4785a
|
|
@ -19,7 +19,7 @@ public class TagEntryMixin {
|
||||||
* @reason use cached location, overwrite rather than inject to avoid allocs
|
* @reason use cached location, overwrite rather than inject to avoid allocs
|
||||||
*/
|
*/
|
||||||
@Overwrite
|
@Overwrite
|
||||||
private ExtraCodecs.TagOrElementLocation elementOrTag() {
|
public ExtraCodecs.TagOrElementLocation elementOrTag() {
|
||||||
ExtraCodecs.TagOrElementLocation loc = cachedLoc;
|
ExtraCodecs.TagOrElementLocation loc = cachedLoc;
|
||||||
if(loc == null) {
|
if(loc == null) {
|
||||||
loc = new ExtraCodecs.TagOrElementLocation(this.id, this.tag);
|
loc = new ExtraCodecs.TagOrElementLocation(this.id, this.tag);
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ public class TagOrElementLocationMixin {
|
||||||
* @reason use cached ID, overwrite rather than inject to avoid allocs
|
* @reason use cached ID, overwrite rather than inject to avoid allocs
|
||||||
*/
|
*/
|
||||||
@Overwrite
|
@Overwrite
|
||||||
private String decoratedId() {
|
public String decoratedId() {
|
||||||
String id = cachedDecoratedId;
|
String id = cachedDecoratedId;
|
||||||
if(id == null) {
|
if(id == null) {
|
||||||
id = this.tag ? "#" + this.id : this.id.toString();
|
id = this.tag ? "#" + this.id : this.id.toString();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user