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:
parent
b35b67c360
commit
5a78534443
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ public class LazyStringBuilder implements Appendable, CharSequence {
|
||||||
|
|
||||||
private final List<CharSequence> list;
|
private final List<CharSequence> list;
|
||||||
|
|
||||||
private String cache;
|
private transient String cache;
|
||||||
private int cachedLength = -1;
|
private int cachedLength = -1;
|
||||||
|
|
||||||
private void invalidateCache() {
|
private void invalidateCache() {
|
||||||
|
|
Loading…
Reference in a new issue