remove unused EhAssets

This commit is contained in:
Cuong-Tran 2025-02-18 00:19:45 +07:00
parent 4c08f61f68
commit 4068267cc2
No known key found for this signature in database
GPG key ID: 733AA7624B9315C2
6 changed files with 5 additions and 92 deletions

View file

@ -1,22 +1,3 @@
package exh.assets
import androidx.compose.ui.graphics.vector.ImageVector
import exh.assets.ehassets.AllAssets
import exh.assets.ehassets.EhLogo
import exh.assets.ehassets.Exh
import exh.assets.ehassets.MangadexLogo
import kotlin.collections.List as ____KtList
public object EhAssets
@Suppress("ObjectPropertyName")
private var __AllAssets: ____KtList<ImageVector>? = null
public val EhAssets.AllAssets: ____KtList<ImageVector>
get() {
if (__AllAssets != null) {
return __AllAssets!!
}
__AllAssets = Exh.AllAssets + listOf(EhLogo, MangadexLogo)
return __AllAssets!!
}
object EhAssets

View file

@ -12,7 +12,8 @@ import androidx.compose.ui.graphics.vector.path
import androidx.compose.ui.unit.dp
import exh.assets.EhAssets
public val EhAssets.EhLogo: ImageVector
@Suppress("UnusedReceiverParameter")
val EhAssets.EhLogo: ImageVector
get() {
if (_ehLogo != null) {
return _ehLogo!!

View file

@ -1,24 +0,0 @@
package exh.assets.ehassets
import androidx.compose.ui.graphics.vector.ImageVector
import exh.assets.EhAssets
import exh.assets.ehassets.exh.AllAssets
import exh.assets.ehassets.exh.Assets
import kotlin.collections.List as ____KtList
public object ExhGroup
public val EhAssets.Exh: ExhGroup
get() = ExhGroup
@Suppress("ObjectPropertyName")
private var __AllAssets: ____KtList<ImageVector>? = null
public val ExhGroup.AllAssets: ____KtList<ImageVector>
get() {
if (__AllAssets != null) {
return __AllAssets!!
}
__AllAssets = Assets.AllAssets + listOf()
return __AllAssets!!
}

View file

@ -11,7 +11,8 @@ import androidx.compose.ui.graphics.vector.path
import androidx.compose.ui.unit.dp
import exh.assets.EhAssets
public val EhAssets.MangadexLogo: ImageVector
@Suppress("UnusedReceiverParameter")
val EhAssets.MangadexLogo: ImageVector
get() {
if (_mangadexLogo != null) {
return _mangadexLogo!!

View file

@ -1,24 +0,0 @@
package exh.assets.ehassets.exh
import androidx.compose.ui.graphics.vector.ImageVector
import exh.assets.ehassets.ExhGroup
import exh.assets.ehassets.exh.assets.AllAssets
import exh.assets.ehassets.exh.assets.Ehassets
import kotlin.collections.List as ____KtList
public object AssetsGroup
public val ExhGroup.Assets: AssetsGroup
get() = AssetsGroup
@Suppress("ObjectPropertyName")
private var __AllAssets: ____KtList<ImageVector>? = null
public val AssetsGroup.AllAssets: ____KtList<ImageVector>
get() {
if (__AllAssets != null) {
return __AllAssets!!
}
__AllAssets = Ehassets.AllAssets + listOf()
return __AllAssets!!
}

View file

@ -1,22 +0,0 @@
package exh.assets.ehassets.exh.assets
import androidx.compose.ui.graphics.vector.ImageVector
import exh.assets.ehassets.exh.AssetsGroup
import kotlin.collections.List as ____KtList
public object EhassetsGroup
public val AssetsGroup.Ehassets: EhassetsGroup
get() = EhassetsGroup
@Suppress("ObjectPropertyName")
private var __AllAssets: ____KtList<ImageVector>? = null
public val EhassetsGroup.AllAssets: ____KtList<ImageVector>
get() {
if (__AllAssets != null) {
return __AllAssets!!
}
__AllAssets = listOf()
return __AllAssets!!
}