mirror of
https://github.com/fankes/moshi.git
synced 2025-10-19 16:09:21 +08:00
* Generate optimized toString() This optimizes `toString()` functions to emit separate strings for the enclosing prefix and the adapter name Example: ```kotlin override fun toString(): String = buildString { append("GeneratedJsonAdapter(").append("SmokeTestType").append(")") } ``` * Optimize with capacity and char