[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
1 changed files with 1 additions and 1 deletions

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() {