diff options
author | Narayan Kamath <narayan@google.com> | 2014-04-14 08:46:17 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-04-14 08:46:17 +0000 |
commit | 964570044ef6b5d721a1372b2bb65c4585947353 (patch) | |
tree | 78c046acec1d3988da018a66e885f3754c911500 /cmds | |
parent | eaa8a6b7feb4a520f48654b087223ccaf49b6a2f (diff) | |
parent | 549ae327245a844862065dc9bb0562544e8c3beb (diff) | |
download | frameworks_base-964570044ef6b5d721a1372b2bb65c4585947353.zip frameworks_base-964570044ef6b5d721a1372b2bb65c4585947353.tar.gz frameworks_base-964570044ef6b5d721a1372b2bb65c4585947353.tar.bz2 |
am 549ae327: am aa19a2f6: Merge "Don\'t compare String8s to NULL."
* commit '549ae327245a844862065dc9bb0562544e8c3beb':
Don't compare String8s to NULL.
Diffstat (limited to 'cmds')
-rw-r--r-- | cmds/app_process/app_main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/app_process/app_main.cpp b/cmds/app_process/app_main.cpp index c520b58..859d83b 100644 --- a/cmds/app_process/app_main.cpp +++ b/cmds/app_process/app_main.cpp @@ -97,7 +97,7 @@ public: virtual void onExit(int code) { - if (mClassName == NULL) { + if (mClassName.isEmpty()) { // if zygote IPCThreadState::self()->stopProcess(); } |