Skip to content

Commit

Permalink
Removed old TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
zgornel committed Sep 13, 2018
1 parent 5d2c81b commit afb7c05
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/diskcache.jl
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ end


# Function that retrieves one entry from a stream
# TODO(Corneliu): Implement
function _load_disk_cache_entry(io::T where T<:IO, pos::Int)
seek(io, pos)
datum = deserialize(io)
Expand All @@ -48,7 +47,6 @@ end


# Function that stores one entry to a stream
# TODO(Corneliu): Implement
function _store_disk_cache_entry(io::T where T<:IO, pos::Int, datum)
seek(io, pos)
serialize(io, datum)
Expand Down

0 comments on commit afb7c05

Please sign in to comment.