mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
不要な処理を削除
This commit is contained in:
parent
504e0a76d5
commit
0473c5abc2
|
@ -90,10 +90,8 @@ public class DebugSharedPrefEditorFragment extends Fragment {
|
||||||
((RadioGroup) view.findViewById(R.id.radioGroupPrefType)).setOnCheckedChangeListener((group, checkedId) -> {
|
((RadioGroup) view.findViewById(R.id.radioGroupPrefType)).setOnCheckedChangeListener((group, checkedId) -> {
|
||||||
if (checkedId == R.id.radioButtonCommon) {
|
if (checkedId == R.id.radioButtonCommon) {
|
||||||
sharedPrefType = SharedPrefType.COMMON;
|
sharedPrefType = SharedPrefType.COMMON;
|
||||||
view.findViewById(R.id.radioButtonUserData).setSelected(false);
|
|
||||||
} else if (checkedId == R.id.radioButtonUserData) {
|
} else if (checkedId == R.id.radioButtonUserData) {
|
||||||
sharedPrefType = SharedPrefType.USERDATA;
|
sharedPrefType = SharedPrefType.USERDATA;
|
||||||
view.findViewById(R.id.radioButtonCommon).setSelected(false);
|
|
||||||
} else {
|
} else {
|
||||||
Log.e("DebugSharedPrefEditorFragment", "radioButtonのIDが不正です");
|
Log.e("DebugSharedPrefEditorFragment", "radioButtonのIDが不正です");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user