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

Commit 7519df9e authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix NativeDaemonConnectorException issue accessing null object" into nyc-mr1-dev

parents 7f44cdd3 878b4557
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ public class NativeDaemonConnectorException extends Exception {
    }

    public int getCode() {
        return mEvent.getCode();
        return mEvent != null ? mEvent.getCode() : -1;
    }

    public String getCmd() {