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

Commit f96aa34f authored by Makoto Onuki's avatar Makoto Onuki
Browse files

Fix typo, etc

Bug: 292141694
Test: TH

Change-Id: I96c5999679e52cb6db8a47c029291702ed4832a8
parent a97ab294
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -364,7 +364,7 @@ using namespace android;

// Called right before aborting by LOG_ALWAYS_FATAL. Print the pending exception.
void abort_handler(const char* abort_message) {
    ALOGE("Abort to abort the process...");
    ALOGE("About to abort the process...");

    JNIEnv* env = NULL;
    if (javaVM->GetEnv(reinterpret_cast<void**>(&env), JNI_VERSION_1_6) != JNI_OK) {
+2 −2
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ import com.android.hoststubgen.asm.toJvmClassName

/**
 * Filter to apply a policy to classes extending or implementing a class,
 * either directly or indirectly. (with a breadth first search.)
 * either directly or indirectly.
 *
 * The policy won't apply to the super class itself.
 */
@@ -42,7 +42,7 @@ class SubclassFilter(
    }

    /**
     * Find a policy for a class with a breadth-first search.
     * Find a policy for a class.
     */
    private fun findPolicyForClass(className: String): FilterPolicyWithReason? {
        val cn = classes.findClass(className) ?: return null