Rename getOrCreateIndex to createOrGetIndex

I think this flows slightly better.

Signed-off-by: Graham <gpe@openrs2.dev>
bzip2
Graham 4 years ago
parent 6fb19e402b
commit 8bed0fc875
  1. 6
      cache/src/main/java/dev/openrs2/cache/DiskStore.kt

@ -113,7 +113,7 @@ public class DiskStore private constructor(
} }
} }
private fun getOrCreateIndex(archive: Int): BufferedFileChannel { private fun createOrGetIndex(archive: Int): BufferedFileChannel {
val index = indexes[archive] val index = indexes[archive]
if (index != null) { if (index != null) {
return index return index
@ -131,7 +131,7 @@ public class DiskStore private constructor(
override fun create(archive: Int) { override fun create(archive: Int) {
checkArchive(archive) checkArchive(archive)
getOrCreateIndex(archive) createOrGetIndex(archive)
} }
override fun read(archive: Int, group: Int): ByteBuf { override fun read(archive: Int, group: Int): ByteBuf {
@ -255,7 +255,7 @@ public class DiskStore private constructor(
val newSize = buf.readableBytes() val newSize = buf.readableBytes()
require(newSize <= Store.MAX_GROUP_SIZE) require(newSize <= Store.MAX_GROUP_SIZE)
val index = getOrCreateIndex(archive) val index = createOrGetIndex(archive)
alloc.buffer(TEMP_BUFFER_SIZE, TEMP_BUFFER_SIZE).use { tempBuf -> alloc.buffer(TEMP_BUFFER_SIZE, TEMP_BUFFER_SIZE).use { tempBuf ->
// read existing index entry, if it exists // read existing index entry, if it exists

Loading…
Cancel
Save