[MKM] Implement Proft's Eidetic Memory (#11779)

This commit is contained in:
Matthew Wilson 2024-02-10 21:52:28 +02:00 committed by GitHub
parent bbe2ede8dc
commit 08eb000453
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 71 additions and 1 deletions

View file

@ -36,7 +36,7 @@ public class IntPlusDynamicValue implements DynamicValue {
@Override
public String toString() {
StringBuilder sb = new StringBuilder(baseValue);
StringBuilder sb = new StringBuilder();
sb.append(baseValue).append(" plus ");
return sb.append(value.toString()).toString();
}