Skip to content

Commit

Permalink
Add missing internal modifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
NichtStudioCode committed Jun 15, 2024
1 parent ab75bad commit d6ce130
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package xyz.xenondevs.nova.world.format

interface IdResolver<T> {
internal interface IdResolver<T> {

/**
* The amount of different ids that can be resolved.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package xyz.xenondevs.nova.world.format.chunk.data

import xyz.xenondevs.cbf.io.ByteWriter

interface CompactIntStorage {
internal interface CompactIntStorage {

/**
* Retrieves the value at the given [index].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import xyz.xenondevs.cbf.io.ByteReader
import xyz.xenondevs.cbf.io.ByteWriter
import xyz.xenondevs.nova.world.format.IdResolver

class HashPalette<T>(private val idResolver: IdResolver<T>) : Palette<T> {
internal class HashPalette<T>(private val idResolver: IdResolver<T>) : Palette<T> {

private val fromId: MutableList<T> = ArrayList()
private val toId: Object2ShortMap<T> = Object2ShortOpenHashMap()
Expand Down

0 comments on commit d6ce130

Please sign in to comment.