Lint no-unused

This commit is contained in:
Tom Russell 2019-05-27 16:25:31 +01:00
parent 0ec551c14e
commit e540003e2f

View File

@ -80,7 +80,7 @@ function load_tile(tileset, z, x, y) {
return get(tileset, z, x, y).then((im) => {
console.log(`From cache ${tileset}/${z}/${x}/${y}`)
return im
}).catch((_) => {
}).catch(() => {
return render_or_stitch_tile(tileset, z, x, y)
})
}