Back to project page GitHubContributionsApp.
The source code is released under:
GNU General Public License
If you think the Android project GitHubContributionsApp listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.githubcardandroidapp.app.GitHubContributionsIO.Repositories; /*from www . j a va 2 s . c om*/ import android.os.AsyncTask; import com.githubcardandroidapp.app.BusinessObjects.GitHubUserRepositories; import com.githubcardandroidapp.app.GitHubCardActivity; import com.githubcardandroidapp.app.GitHubContributionsIO.Services.GitHubSyncService; public abstract class GitHubUserRepositoriesAsyncTask extends AsyncTask<String, GitHubUserRepositories, GitHubUserRepositories> { protected GitHubSyncService gitHubSyncService; public GitHubUserRepositoriesAsyncTask(GitHubSyncService gitHubCardActivity) { this.gitHubSyncService = gitHubCardActivity; } @Override protected void onPostExecute(GitHubUserRepositories userRepositories) { if (!this.isCancelled() && userRepositories != null) { gitHubSyncService.updateRepositoriesList(userRepositories); } } }