Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Android] Remove unnecessary string messages from CPUSettingsFragment…
… and VideoSettingsFragment.
  • Loading branch information
lioncash committed Aug 20, 2013
1 parent 00996c8 commit 9170c9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Expand Up @@ -65,8 +65,7 @@ public void onAttach(Activity activity)
}
catch (ClassCastException e)
{
throw new ClassCastException(activity.toString()
+ " must implement OnGameListZeroListener");
throw new ClassCastException(activity.toString());
}
}

Expand Down
Expand Up @@ -186,8 +186,7 @@ public void onAttach(Activity activity)
}
catch (ClassCastException e)
{
throw new ClassCastException(activity.toString()
+ " must implement OnGameListZeroListener");
throw new ClassCastException(activity.toString());
}
}

Expand Down

0 comments on commit 9170c9b

Please sign in to comment.