Revert "refactor: move arsclib wrapper things to its own module"

This reverts commit 0656ec9469.
This commit is contained in:
Ax333l 2023-06-01 21:53:28 +02:00
parent 0656ec9469
commit a8cac5a440
No known key found for this signature in database
GPG Key ID: D2B4D85271127D23
2 changed files with 1 additions and 2 deletions

View File

@ -28,7 +28,6 @@ dependencies {
testImplementation("org.jetbrains.kotlin:kotlin-test:1.8.20-RC")
implementation("app.revanced:revanced-patcher:9.0.0")
implementation("app.revanced:arsclib-utils:9.0.0")
implementation("info.picocli:picocli:4.7.1")
implementation("com.github.revanced:jadb:2531a28109") // updated fork
implementation("com.android.tools.build:apksig:8.1.0-alpha09")

View File

@ -3,7 +3,7 @@ package app.revanced.cli.patcher.logging.impl
import app.revanced.cli.logging.impl.DefaultCliLogger
import java.util.logging.Logger
internal object PatcherLogger : app.revanced.arsc.logging.Logger {
internal object PatcherLogger : app.revanced.patcher.logging.Logger{
private val logger = DefaultCliLogger(Logger.getLogger(app.revanced.patcher.Patcher::class.java.name))
override fun error(msg: String) = logger.error(msg)