refactor(CustomEmojiSpan.java): make drawable field protected, because AvatarSpan uses it

This commit is contained in:
LucasGGamerM
2025-04-27 09:49:24 -03:00
parent a86e90ced6
commit b93747c16f

View File

@@ -16,7 +16,8 @@ import me.grishka.appkit.utils.V;
public class CustomEmojiSpan extends ReplacementSpan{
public final Emoji emoji;
private Drawable drawable;
// MOSHIDON: we changed this to protected cuz AvatarSpan uses it :D
protected Drawable drawable;
public CustomEmojiSpan(Emoji emoji){
this.emoji=emoji;