Skip to content
This repository has been archived by the owner on Apr 27, 2019. It is now read-only.

Commit

Permalink
Bug fix #53
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathew Kurian committed Jan 15, 2015
1 parent 7492bf4 commit d003619
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Expand Up @@ -17,8 +17,8 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

VERSION_NAME=2.0.2
VERSION_CODE=14
VERSION_NAME=2.0.3
VERSION_CODE=15
GROUP=com.github.bluejamesbond

POM_DESCRIPTION=Android Text Full Jusiftication
Expand Down
Expand Up @@ -726,7 +726,9 @@ protected void onPreExecute() {
@Override
protected void onPostExecute(Boolean done) {
if (!done || isCancelled()) {
layoutProgressListener.onCancelled();
if (layoutProgressListener != null) {
layoutProgressListener.onCancelled();
}
return;
}

Expand Down

0 comments on commit d003619

Please sign in to comment.