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

Commit b18ff38a authored by Daniel 2 Olofsson's avatar Daniel 2 Olofsson Committed by android-build-merger
Browse files

Merge \\"Fix NativeDaemonConnectorException issue accessing null object\\"...

Merge \\"Fix NativeDaemonConnectorException issue accessing null object\\" into nyc-mr1-dev am: 7519df9e
am: 961490e8

Change-Id: I7f4be199eded99a3abc06321083a80f861f66ab9
parents bbbcd799 961490e8
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() {