From 1267877e80d08a818983cc7b0c01a6f3e5061330 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 24 Oct 2013 15:10:25 -0400 Subject: [PATCH] [Android] Documentation typo cleanups from the last commit. Also cleaned up the Javadoc for the constructor of MotionAlertDialog. --- .../dolphinemu/dolphinemu/settings/InputConfigFragment.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Source/Android/src/org/dolphinemu/dolphinemu/settings/InputConfigFragment.java b/Source/Android/src/org/dolphinemu/dolphinemu/settings/InputConfigFragment.java index 1a3bc1fb56..a23f1b4a3f 100644 --- a/Source/Android/src/org/dolphinemu/dolphinemu/settings/InputConfigFragment.java +++ b/Source/Android/src/org/dolphinemu/dolphinemu/settings/InputConfigFragment.java @@ -135,7 +135,8 @@ public final class InputConfigFragment extends PreferenceFragment /** * Constructor * - * @param ctx context to use this dialog in. + * @param ctx The current {@link Context}. + * @param inputPref The Preference to show this dialog for. */ public MotionAlertDialog(Context ctx, Preference inputPref) { @@ -167,7 +168,8 @@ public final class InputConfigFragment extends PreferenceFragment } - // Method that will be within dispatchGeneticMotionEvent that listens for joystick/controller movements. + // Method that will be called within dispatchGenericMotionEvent + // that handles joystick/controller movements. private boolean onMotionEvent(MotionEvent event) { if ((event.getSource() & InputDevice.SOURCE_CLASS_JOYSTICK) == 0)