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

am: 7519df9eaf

Change-Id: Ic094b459a22a31a045ad61660694b616d7236893
This commit is contained in:
Daniel 2 Olofsson
2016-06-30 00:26:36 +00:00
committed by android-build-merger

View File

@@ -41,7 +41,7 @@ public class NativeDaemonConnectorException extends Exception {
}
public int getCode() {
return mEvent.getCode();
return mEvent != null ? mEvent.getCode() : -1;
}
public String getCmd() {