Skip to content
Snippets Groups Projects
Commit 42372515 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Remove additional logspam from SmartspaceService"

parents 07ab2f52 7bfc101b
No related branches found
No related tags found
No related merge requests found
......@@ -245,7 +245,9 @@ public abstract class SmartspaceService extends Service {
public abstract void onDestroySmartspaceSession(@NonNull SmartspaceSessionId sessionId);
private void doDestroy(@NonNull SmartspaceSessionId sessionId) {
Log.d(TAG, "doDestroy mSessionCallbacks: " + mSessionCallbacks);
if (DEBUG) {
Log.d(TAG, "doDestroy mSessionCallbacks: " + mSessionCallbacks);
}
super.onDestroy();
mSessionCallbacks.remove(sessionId);
onDestroySmartspaceSession(sessionId);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment