Skip to content
Snippets Groups Projects
Commit 2edb4f22 authored by Kurt Partridge's avatar Kurt Partridge
Browse files

Clean up unnecessary log messages

Change-Id: I6c3252f3b31c5874ea2f909f636f58b579c06b8d
parent 3970352e
No related branches found
No related tags found
No related merge requests found
...@@ -65,12 +65,10 @@ public class FeedbackFragment extends Fragment implements OnClickListener { ...@@ -65,12 +65,10 @@ public class FeedbackFragment extends Fragment implements OnClickListener {
mCancelButton.setOnClickListener(this); mCancelButton.setOnClickListener(this);
if (savedInstanceState != null) { if (savedInstanceState != null) {
Log.d(TAG, "restoring from savedInstanceState");
restoreState(savedInstanceState); restoreState(savedInstanceState);
} else { } else {
final Bundle bundle = getActivity().getIntent().getExtras(); final Bundle bundle = getActivity().getIntent().getExtras();
if (bundle != null) { if (bundle != null) {
Log.d(TAG, "restoring from getArguments()");
restoreState(bundle); restoreState(bundle);
} }
} }
......
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