Skip to content

Commit 4068267

Browse files
committed
remove unused EhAssets
1 parent 4c08f61 commit 4068267

File tree

6 files changed

+5
-92
lines changed

6 files changed

+5
-92
lines changed
+1-20
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,3 @@
11
package exh.assets
22

3-
import androidx.compose.ui.graphics.vector.ImageVector
4-
import exh.assets.ehassets.AllAssets
5-
import exh.assets.ehassets.EhLogo
6-
import exh.assets.ehassets.Exh
7-
import exh.assets.ehassets.MangadexLogo
8-
import kotlin.collections.List as ____KtList
9-
10-
public object EhAssets
11-
12-
@Suppress("ObjectPropertyName")
13-
private var __AllAssets: ____KtList<ImageVector>? = null
14-
15-
public val EhAssets.AllAssets: ____KtList<ImageVector>
16-
get() {
17-
if (__AllAssets != null) {
18-
return __AllAssets!!
19-
}
20-
__AllAssets = Exh.AllAssets + listOf(EhLogo, MangadexLogo)
21-
return __AllAssets!!
22-
}
3+
object EhAssets

app/src/main/java/exh/assets/ehassets/EhLogo.kt

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ import androidx.compose.ui.graphics.vector.path
1212
import androidx.compose.ui.unit.dp
1313
import exh.assets.EhAssets
1414

15-
public val EhAssets.EhLogo: ImageVector
15+
@Suppress("UnusedReceiverParameter")
16+
val EhAssets.EhLogo: ImageVector
1617
get() {
1718
if (_ehLogo != null) {
1819
return _ehLogo!!

app/src/main/java/exh/assets/ehassets/Exh.kt

-24
This file was deleted.

app/src/main/java/exh/assets/ehassets/MangadexLogo.kt

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ import androidx.compose.ui.graphics.vector.path
1111
import androidx.compose.ui.unit.dp
1212
import exh.assets.EhAssets
1313

14-
public val EhAssets.MangadexLogo: ImageVector
14+
@Suppress("UnusedReceiverParameter")
15+
val EhAssets.MangadexLogo: ImageVector
1516
get() {
1617
if (_mangadexLogo != null) {
1718
return _mangadexLogo!!

app/src/main/java/exh/assets/ehassets/exh/Assets.kt

-24
This file was deleted.

app/src/main/java/exh/assets/ehassets/exh/assets/Ehassets.kt

-22
This file was deleted.

0 commit comments

Comments
 (0)