Skip to content

Commit b0b1a0e

Browse files
committed
refactor: change visibility of encodeBlock and decodeBlock to internal in BaseRadix class
1 parent c220816 commit b0b1a0e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/kotlin/com/eignex/kencode/BaseRadix.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ open class BaseRadix(
207207
*
208208
* The encoded block is written starting at [outPos] and occupies exactly [outLen] characters.
209209
*/
210-
fun encodeBlock(
210+
internal fun encodeBlock(
211211
input: ByteArray,
212212
inPos: Int = 0,
213213
inLen: Int = input.size,
@@ -240,7 +240,7 @@ open class BaseRadix(
240240
*
241241
* @throws IllegalArgumentException if invalid characters or inconsistent blocks are found.
242242
*/
243-
fun decodeBlock(
243+
internal fun decodeBlock(
244244
input: CharSequence,
245245
inPos: Int = 0,
246246
inLen: Int = input.length,

0 commit comments

Comments
 (0)