File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packed-core/src/main/kotlin/net/radstevee/packed/core/font Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn=true
55org.gradle.caching =true
66org.gradle.parallel =true
77
8- packedVersion =1.0.0
8+ packedVersion =1.0.1
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ public class Font private constructor(
5454 /* *
5555 * All font providers.
5656 */
57- public val providersList : @UnmodifiableView List <FontProvider > = _providers .toList()
57+ public val providers : @UnmodifiableView List <FontProvider > get() = _providers .toList()
5858
5959 /* *
6060 * Adds a new font provider.
@@ -72,7 +72,7 @@ public class Font private constructor(
7272 val unresolvedAssets = mutableListOf<Path >()
7373 val fallbackAssets = mutableListOf<Pair <Path , Path >>()
7474
75- providersList .forEach { provider ->
75+ providers .forEach { provider ->
7676 when (provider) {
7777 is FontProvider .Bitmap -> {
7878 val assetExists = pack.assetResolutionStrategy.getTexture(provider.key)?.exists() ? : false
You can’t perform that action at this time.
0 commit comments