1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-11-21 19:42:05 +01:00

[core] Mark LazyStringBuilder's String cache as transient

This commit is contained in:
Florian Schmaus 2023-11-26 21:35:04 +01:00
parent b35b67c360
commit 5a78534443

View file

@ -24,7 +24,7 @@ public class LazyStringBuilder implements Appendable, CharSequence {
private final List<CharSequence> list;
private String cache;
private transient String cache;
private int cachedLength = -1;
private void invalidateCache() {