diff options
| author | 2013-12-26 15:33:58 -0800 | |
|---|---|---|
| committer | 2013-12-26 15:33:58 -0800 | |
| commit | cd73f7702fca082bf46d64b5c011f9dbe1b5fe65 (patch) | |
| tree | dccd9bd57e4cb77099a800763f8ba8549f64ad63 | |
| parent | 317109dfaf0682f6ffbf11d71f3da84dfa295df6 (diff) | |
| parent | 5d98ddf2f741c2a635b9df90cf896c9faceb1b33 (diff) | |
am 5d98ddf2: am fca563a2: docs: Fixed code snippet for unbinding from IAB v3 service. Bug: 11858905
* commit '5d98ddf2f741c2a635b9df90cf896c9faceb1b33':
docs: Fixed code snippet for unbinding from IAB v3 service. Bug: 11858905
| -rw-r--r-- | docs/html/google/play/billing/billing_integrate.jd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/google/play/billing/billing_integrate.jd b/docs/html/google/play/billing/billing_integrate.jd index 57227a84ebbf..949752a3ed9a 100644 --- a/docs/html/google/play/billing/billing_integrate.jd +++ b/docs/html/google/play/billing/billing_integrate.jd @@ -157,7 +157,7 @@ public void onCreate(Bundle savedInstanceState) { @Override public void onDestroy() { super.onDestroy(); - if (mServiceConn != null) { + if (mService != null) { unbindService(mServiceConn); } } |