Remove comment from UploadController.java

This commit is contained in:
misaochan 2018-03-18 19:17:02 +10:00
parent 666b7a0843
commit d6e848b32e

View file

@ -195,7 +195,7 @@ public class UploadController {
protected void onPostExecute(Contribution contribution) { protected void onPostExecute(Contribution contribution) {
super.onPostExecute(contribution); super.onPostExecute(contribution);
//Starts the upload. If commented out, user can proceed to next Fragment but upload doesn't happen //Starts the upload. If commented out, user can proceed to next Fragment but upload doesn't happen
//uploadService.queue(UploadService.ACTION_UPLOAD_FILE, contribution); uploadService.queue(UploadService.ACTION_UPLOAD_FILE, contribution);
onComplete.onUploadStarted(contribution); onComplete.onUploadStarted(contribution);
} }
}.executeOnExecutor(Executors.newFixedThreadPool(1)); // TODO remove this by using a sensible thread handling strategy }.executeOnExecutor(Executors.newFixedThreadPool(1)); // TODO remove this by using a sensible thread handling strategy