From bc9fe465bce9bda74729669441a7face7babf9a5 Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Tue, 29 Apr 2014 23:46:27 -0400 Subject: [PATCH] Update the markdown so code generates correctly --- _posts/2014-04-29-asynctask-caching.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/_posts/2014-04-29-asynctask-caching.md b/_posts/2014-04-29-asynctask-caching.md index f401ae1..58fa871 100644 --- a/_posts/2014-04-29-asynctask-caching.md +++ b/_posts/2014-04-29-asynctask-caching.md @@ -40,6 +40,7 @@ The EventBus is an asynchronous communication bus that allows us to connect send So, let's get into some actual pseudo-code! **FetchTask.java** + ``` class FetchTask extends AsyncTask<...> { private EventBus downloadBus; @@ -56,6 +57,7 @@ class FetchTask extends AsyncTask<...> { ``` **DownloadManager.java** + ``` class DownloadManager { private EventBus downloadBus; @@ -76,6 +78,7 @@ class DownloadManager { ``` **Fragment.java** + ``` class Fragment { public void init() {