diff options
author | Fabrice Di Meglio <fdimeglio@google.com> | 2014-05-17 00:01:07 +0000 |
---|---|---|
committer | Fabrice Di Meglio <fdimeglio@google.com> | 2014-05-17 00:01:07 +0000 |
commit | 93b77b7bf6d39f7549a4bd98c03aadad10b1a9ce (patch) | |
tree | 5a64c3e74ac50bd9ef54931baf7205eb703844e2 /src/com/android/settings/Utils.java | |
parent | 18d271c73b17c9eb5570689247415a1d70583894 (diff) | |
download | packages_apps_Settings-93b77b7bf6d39f7549a4bd98c03aadad10b1a9ce.tar.gz packages_apps_Settings-93b77b7bf6d39f7549a4bd98c03aadad10b1a9ce.tar.bz2 packages_apps_Settings-93b77b7bf6d39f7549a4bd98c03aadad10b1a9ce.zip |
Revert "Fix bug #15001610 Java crash in settings is observed while adding Google account on wiped device"
This reverts commit 18d271c73b17c9eb5570689247415a1d70583894.
Change-Id: I04f89dbb13ad1db92276c91a7ee63d3a5dd33e62
Diffstat (limited to 'src/com/android/settings/Utils.java')
-rw-r--r-- | src/com/android/settings/Utils.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/com/android/settings/Utils.java b/src/com/android/settings/Utils.java index ab5ee911e..36e19046b 100644 --- a/src/com/android/settings/Utils.java +++ b/src/com/android/settings/Utils.java @@ -518,7 +518,7 @@ public class Utils { * entire activity. * * @param context The context. - * @param fragmentClass The class name of the fragment to display. + * @param fragmentName The name of the fragment to display. * @param args Optional arguments to supply to the fragment. * @param resultTo Option fragment that should receive the result of * the activity launch. @@ -526,9 +526,9 @@ public class Utils { * code in which to report the result. * @param title String to display for the title of this set of preferences. */ - public static void startWithFragment(Context context, String fragmentClass, Bundle args, + public static void startWithFragment(Context context, String fragmentName, Bundle args, Fragment resultTo, int resultRequestCode, CharSequence title) { - Intent intent = onBuildStartFragmentIntent(context, fragmentClass, args, title); + Intent intent = onBuildStartFragmentIntent(context, fragmentName, args, title); if (resultTo == null) { context.startActivity(intent); } else { @@ -542,17 +542,17 @@ public class Utils { * appropriate arguments to display the fragment. * * @param context The Context. - * @param fragmentClass The class name of the fragment to display. + * @param fragmentName The name of the fragment to display. * @param args Optional arguments to supply to the fragment. * @param title Optional title to show for this item. * @return Returns an Intent that can be launched to display the given * fragment. */ - public static Intent onBuildStartFragmentIntent(Context context, String fragmentClass, + public static Intent onBuildStartFragmentIntent(Context context, String fragmentName, Bundle args, CharSequence title) { Intent intent = new Intent(Intent.ACTION_MAIN); intent.setClass(context, SubSettings.class); - intent.putExtra(SettingsActivity.EXTRA_SHOW_FRAGMENT, fragmentClass); + intent.putExtra(SettingsActivity.EXTRA_SHOW_FRAGMENT, fragmentName); intent.putExtra(SettingsActivity.EXTRA_SHOW_FRAGMENT_ARGUMENTS, args); intent.putExtra(SettingsActivity.EXTRA_SHOW_FRAGMENT_TITLE, title); return intent; |