Skip to content

Commit d607e9b

Browse files
committed
Small fix
1 parent 484722f commit d607e9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/blocksparsearrayinterface/blocksparsearrayinterface.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ struct BlockSparseArrayInterface <: AbstractBlockSparseArrayInterface end
103103
a::AbstractArray{<:Any,N}, I::Vararg{Int,N}
104104
) where {N}
105105
bI = BlockIndex(findblockindex.(axes(a), I))
106-
return isstored(blocks_a, bI.I...) && isstored(blocks_a[bI.I...], bI.α...)
106+
return isstored(blocks(a), bI.I...) && isstored(blocks(a)[bI.I...], bI.α...)
107107
end
108108

109109
@interface ::AbstractBlockSparseArrayInterface function Base.getindex(

0 commit comments

Comments
 (0)