From f6a8733660190283460e47ee0fbd18c3bfb4acec Mon Sep 17 00:00:00 2001 From: Lioncash <mathew1800@gmail.com> Date: Thu, 26 Sep 2013 23:32:41 -0400 Subject: [PATCH] [Android] Tiny inline documentation cleanup. --- .../dolphinemu/folderbrowser/FolderBrowserItem.java | 4 ++-- .../org/dolphinemu/dolphinemu/gamelist/GameListItem.java | 8 ++++---- .../org/dolphinemu/dolphinemu/settings/PrefsActivity.java | 7 +++---- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/Source/Android/src/org/dolphinemu/dolphinemu/folderbrowser/FolderBrowserItem.java b/Source/Android/src/org/dolphinemu/dolphinemu/folderbrowser/FolderBrowserItem.java index c2b2723664..0017859797 100644 --- a/Source/Android/src/org/dolphinemu/dolphinemu/folderbrowser/FolderBrowserItem.java +++ b/Source/Android/src/org/dolphinemu/dolphinemu/folderbrowser/FolderBrowserItem.java @@ -36,8 +36,8 @@ public final class FolderBrowserItem implements Comparable<FolderBrowserItem> /** * Constructor. Initializes a FolderBrowserItem with an empty subtitle. * - * @param name The name of the file/folder represented by this item. - * @param path The path of the file/folder represented by this item. + * @param name The name of the file/folder represented by this item. + * @param path The path of the file/folder represented by this item. */ public FolderBrowserItem(String name, String path) { diff --git a/Source/Android/src/org/dolphinemu/dolphinemu/gamelist/GameListItem.java b/Source/Android/src/org/dolphinemu/dolphinemu/gamelist/GameListItem.java index 67d61256d4..f0c9c8a262 100644 --- a/Source/Android/src/org/dolphinemu/dolphinemu/gamelist/GameListItem.java +++ b/Source/Android/src/org/dolphinemu/dolphinemu/gamelist/GameListItem.java @@ -30,10 +30,10 @@ public final class GameListItem implements Comparable<GameListItem> /** * Constructor. * - * @param ctx The current {@link Context} - * @param name The name of this GameListItem. - * @param data The subtitle for this GameListItem - * @param path The file path for the game represented by this GameListItem. + * @param ctx The current {@link Context} + * @param name The name of this GameListItem. + * @param data The subtitle for this GameListItem + * @param path The file path for the game represented by this GameListItem. */ public GameListItem(Context ctx, String name, String data, String path) { diff --git a/Source/Android/src/org/dolphinemu/dolphinemu/settings/PrefsActivity.java b/Source/Android/src/org/dolphinemu/dolphinemu/settings/PrefsActivity.java index 486110f6c9..bd1259b8ae 100644 --- a/Source/Android/src/org/dolphinemu/dolphinemu/settings/PrefsActivity.java +++ b/Source/Android/src/org/dolphinemu/dolphinemu/settings/PrefsActivity.java @@ -25,10 +25,9 @@ import android.support.v4.view.ViewPager; public final class PrefsActivity extends Activity implements ActionBar.TabListener { /** - * The {@link android.support.v4.view.PagerAdapter} that will provide org.dolphinemu.dolphinemu.settings for each of the - * sections. We use a {@link android.support.v4.app.FragmentPagerAdapter} derivative, which will - * keep every loaded fragment in memory. If this becomes too memory intensive, it may be best to - * switch to a {@link android.support.v4.app.FragmentStatePagerAdapter}. + * The {@link FragmentPagerAdapter} that will provide settings + * fragments for each of the sections. This will also keep every + * loaded fragment in memory. */ private SectionsPagerAdapter mSectionsPagerAdapter;