Dependency updates & removing unused code (#70)

Just bumping dependencies and deleting some unused code. No user facing
changes
This commit is contained in:
damontecres 2025-10-26 18:17:47 -04:00 committed by GitHub
parent 1c1e64a5b9
commit 89b9364807
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
30 changed files with 367 additions and 844 deletions

View file

@ -1,11 +0,0 @@
package com.github.damontecres.wholphin.util
class LazyList<Source, Transform>(
private val source: List<Source>,
private val transform: (Source) -> Transform,
) : AbstractList<Transform>() {
override fun get(index: Int): Transform = transform.invoke(source[index])
override val size: Int
get() = source.size
}