diff --git a/app/src/main/java/com/github/mobile/accounts/AccountAuthenticator.java b/app/src/main/java/com/github/mobile/accounts/AccountAuthenticator.java index b0b1ccc03..01f3431ef 100644 --- a/app/src/main/java/com/github/mobile/accounts/AccountAuthenticator.java +++ b/app/src/main/java/com/github/mobile/accounts/AccountAuthenticator.java @@ -46,6 +46,7 @@ import org.eclipse.egit.github.core.Authorization; import org.eclipse.egit.github.core.service.OAuthService; + public class AccountAuthenticator extends AbstractAccountAuthenticator { private static final String TAG = "GHAccountAuthenticator"; diff --git a/app/src/main/java/com/github/mobile/core/gist/FullGist.java b/app/src/main/java/com/github/mobile/core/gist/FullGist.java index c72af8888..7512b0684 100644 --- a/app/src/main/java/com/github/mobile/core/gist/FullGist.java +++ b/app/src/main/java/com/github/mobile/core/gist/FullGist.java @@ -22,6 +22,8 @@ import org.eclipse.egit.github.core.Comment; import org.eclipse.egit.github.core.Gist; + + /** * Gist model with comments and starred status */ diff --git a/app/src/main/java/com/github/mobile/persistence/AccountDataManager.java b/app/src/main/java/com/github/mobile/persistence/AccountDataManager.java index 2a2d383e2..3335c5787 100644 --- a/app/src/main/java/com/github/mobile/persistence/AccountDataManager.java +++ b/app/src/main/java/com/github/mobile/persistence/AccountDataManager.java @@ -49,6 +49,8 @@ */ public class AccountDataManager { + + private static final String TAG = "AccountDataManager"; private static final Executor EXECUTOR = Executors.newFixedThreadPool(10); @@ -194,6 +196,8 @@ public Collection getIssueFilters() { return Collections.emptyList(); } + + /** * Get bookmarked issue filters * @@ -304,4 +308,11 @@ protected void onException(Exception e) throws RuntimeException { } }.execute(); } + + /** + * I'm assuming this class would be a good place to put in the code + * that would also make the request to get and set the information for the user's profile + * settings. + **/ + } diff --git a/app/src/main/java/com/github/mobile/ui/user/UserPagerAdapter.java b/app/src/main/java/com/github/mobile/ui/user/UserPagerAdapter.java index c7a6a7eeb..ad0f16ebf 100644 --- a/app/src/main/java/com/github/mobile/ui/user/UserPagerAdapter.java +++ b/app/src/main/java/com/github/mobile/ui/user/UserPagerAdapter.java @@ -75,4 +75,10 @@ public CharSequence getPageTitle(int position) { return null; } } + + /** + * In this class we would also tell he pager adapter to request + * the return of the 'settings' option. + * We might need to also create a fragment for the info. + */ }