Commit 742dced7 authored by Masayuki Tanaka's avatar Masayuki Tanaka Committed by masayuki

Revert "Use only current targets caches"

This reverts commit 627f252c28e31d639b5f1f17772fbe979e43101b.
parent 2ec0a4a3
...@@ -317,9 +317,7 @@ ...@@ -317,9 +317,7 @@
function getCaches (ids) { function getCaches (ids) {
var targets = [] var targets = []
for (var i = 0; i < ids.length; i++){ for (var i = 0; i < ids.length; i++){
if (ids[i] in cache && hasTarget(__data_id_converter(ids[i]))) { if (ids[i] in cache) targets.push(cloneTarget(cache[ids[i]]))
targets.push(cloneTarget(cache[ids[i]]))
}
} }
return targets return targets
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment