Skip to content

Commit

Permalink
Make alphabet of LookupBaseEncoding publicly accessible
Browse files Browse the repository at this point in the history
  • Loading branch information
sirthias committed Nov 12, 2024
1 parent 12655c2 commit 70e3a50
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

package io.bullet.borer.encodings

abstract class LookupBaseEncoding(_name: String, _bitsPerChar: Int, alphabet: String)
abstract class LookupBaseEncoding(_name: String, _bitsPerChar: Int, val alphabet: String)
extends BaseEncoding(_name, _bitsPerChar):

protected val alphabetChars = alphabet.toCharArray
Expand Down

0 comments on commit 70e3a50

Please sign in to comment.