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

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

Merge "Remove the Log.wtf calls for VarHandle lookup failures." into main

parents ae00d37f 3e3c5edd
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -2598,7 +2598,6 @@ public final class MessageQueue {
                sRemovedFromStack = l.findVarHandle(MessageQueue.MessageNode.class,
                        "mRemovedFromStackValue", boolean.class);
            } catch (Exception e) {
                Log.wtf(TAG_C, "VarHandle lookup failed", e);
                throw new ExceptionInInitializerError(e);
            }
        }
@@ -2679,7 +2678,6 @@ public final class MessageQueue {
            sMptrRefCount = l.findVarHandle(MessageQueue.class, "mMptrRefCountValue",
                    long.class);
        } catch (Exception e) {
            Log.wtf(TAG_C, "VarHandle lookup failed", e);
            throw new ExceptionInInitializerError(e);
        }
    }
@@ -2797,7 +2795,6 @@ public final class MessageQueue {
                sCounts = l.findVarHandle(MessageQueue.MessageCounts.class, "mCountsValue",
                        long.class);
            } catch (Exception e) {
                Log.wtf(TAG_C, "VarHandle lookup failed", e);
                throw new ExceptionInInitializerError(e);
            }
        }