We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c220816 commit b0b1a0eCopy full SHA for b0b1a0e
1 file changed
src/main/kotlin/com/eignex/kencode/BaseRadix.kt
@@ -207,7 +207,7 @@ open class BaseRadix(
207
*
208
* The encoded block is written starting at [outPos] and occupies exactly [outLen] characters.
209
*/
210
- fun encodeBlock(
+ internal fun encodeBlock(
211
input: ByteArray,
212
inPos: Int = 0,
213
inLen: Int = input.size,
@@ -240,7 +240,7 @@ open class BaseRadix(
240
241
* @throws IllegalArgumentException if invalid characters or inconsistent blocks are found.
242
243
- fun decodeBlock(
+ internal fun decodeBlock(
244
input: CharSequence,
245
246
inLen: Int = input.length,
0 commit comments