We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de2c7a9 commit 92f9d4fCopy full SHA for 92f9d4f
src/commonMain/kotlin/com/eignex/kencode/EncodedFormat.kt
@@ -53,7 +53,7 @@ open class EncodedFormat(
53
override val serializersModule: SerializersModule get() = configuration.binaryFormat.serializersModule
54
55
/**
56
- * Default format: `PackedFormat` + `Base62` + [CompactZeros].
+ * Default format: `PackedFormat` + `Base62`, no transform.
57
*/
58
companion object Default : EncodedFormat()
59
@@ -85,7 +85,7 @@ open class EncodedFormat(
85
86
class EncodedFormatBuilder {
87
var codec: ByteEncoding = Base62
88
- var transform: PayloadTransform? = CompactZeros
+ var transform: PayloadTransform? = null
89
var binaryFormat: BinaryFormat = PackedFormat.Default
90
91
var checksum: Checksum?
0 commit comments