Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7423238c authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Make HostSubGen less verbose" into main

parents 4303ad4e da204de8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -66,7 +66,7 @@ class SanitizationFilter(
    override fun getRedirectionClass(className: String): String? {
        return super.getRedirectionClass(className)?.also { clazz ->
            if (classes.findClass(clazz) == null) {
                log.w("Redirection class $clazz not found. Class must be available at runtime.")
                log.v("Redirection class $clazz not found. Class must be available at runtime.")
            } else if (outermostFilter.getPolicyForClass(clazz).policy != FilterPolicy.KeepClass) {
                // If the class exists, it must have a KeepClass policy.
                errors.onErrorFound("Redirection class $clazz must have @KeepWholeClass.")