summaryrefslogtreecommitdiff
path: root/content/llcache.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2010-04-11 13:29:02 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2010-04-11 13:29:02 +0000
commit34707640418440933138da43b615b47777ea1304 (patch)
tree52a8053d7386d1a130db6e57960305248b402ce3 /content/llcache.c
parent580fa084de560f5c3906746504f9f9ad9fb8459f (diff)
downloadnetsurf-34707640418440933138da43b615b47777ea1304.tar.gz
netsurf-34707640418440933138da43b615b47777ea1304.tar.bz2
Remove redundant todos
svn path=/trunk/netsurf/; revision=10349
Diffstat (limited to 'content/llcache.c')
-rw-r--r--content/llcache.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/content/llcache.c b/content/llcache.c
index 177b2bd39..9a58ad095 100644
--- a/content/llcache.c
+++ b/content/llcache.c
@@ -707,8 +707,6 @@ nserror llcache_object_cache_update(llcache_object *object)
if (object->cache.date == 0)
object->cache.date = time(NULL);
- /** \todo Any magic we need to do for no_cache? */
-
return NSERROR_OK;
}
@@ -1556,7 +1554,6 @@ void llcache_fetch_callback(fetch_msg msg, void *p, const void *data,
/* Deal with any errors reported by event handlers */
if (error != NSERROR_OK) {
- /** \todo Error handling */
if (object->fetch.fetch != NULL) {
fetch_abort(object->fetch.fetch);
object->fetch.fetch = NULL;
@@ -1682,7 +1679,6 @@ nserror llcache_fetch_notmodified(llcache_object *object,
memset(&object->cache, 0, sizeof(llcache_cache_control));
/* Ensure fetch has stopped */
- /** \todo Are there any other fields that need invalidating? */
fetch_abort(object->fetch.fetch);
object->fetch.fetch = NULL;