[Android] Remove unnecessary string messages from CPUSettingsFragment and VideoSettingsFragment.
This commit is contained in:
parent
00996c8d38
commit
9170c9b360
|
@ -65,8 +65,7 @@ public final class CPUSettingsFragment extends PreferenceFragment
|
||||||
}
|
}
|
||||||
catch (ClassCastException e)
|
catch (ClassCastException e)
|
||||||
{
|
{
|
||||||
throw new ClassCastException(activity.toString()
|
throw new ClassCastException(activity.toString());
|
||||||
+ " must implement OnGameListZeroListener");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -186,8 +186,7 @@ public final class VideoSettingsFragment extends PreferenceFragment
|
||||||
}
|
}
|
||||||
catch (ClassCastException e)
|
catch (ClassCastException e)
|
||||||
{
|
{
|
||||||
throw new ClassCastException(activity.toString()
|
throw new ClassCastException(activity.toString());
|
||||||
+ " must implement OnGameListZeroListener");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue