Skip to content

Commit

Permalink
Merge pull request #94 from adjust/diamond_operator
Browse files Browse the repository at this point in the history
Fix diamond operator
  • Loading branch information
nonelse committed Mar 23, 2015
2 parents 269dc69 + 07b5b51 commit 101edd5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ private void readPackageQueue() {
if (packageQueue != null) {
logger.debug("Package handler read %d packages", packageQueue.size());
} else {
packageQueue = new ArrayList<>();
packageQueue = new ArrayList<ActivityPackage>();
}
}

Expand Down

0 comments on commit 101edd5

Please sign in to comment.