[Android] Remove unnecessary string messages from CPUSettingsFragment and VideoSettingsFragment.

This commit is contained in:
Lioncash 2013-08-20 19:57:00 -04:00
parent 00996c8d38
commit 9170c9b360
2 changed files with 2 additions and 4 deletions

View File

@ -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());
}
}

View File

@ -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());
}
}