[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)
|
||||
{
|
||||
throw new ClassCastException(activity.toString()
|
||||
+ " must implement OnGameListZeroListener");
|
||||
throw new ClassCastException(activity.toString());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -186,8 +186,7 @@ public final class VideoSettingsFragment extends PreferenceFragment
|
|||
}
|
||||
catch (ClassCastException e)
|
||||
{
|
||||
throw new ClassCastException(activity.toString()
|
||||
+ " must implement OnGameListZeroListener");
|
||||
throw new ClassCastException(activity.toString());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue