Merge "Clean up unnecessary log messages"
commit
7da87f97b0
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue