Skip to content

Commit f0de23c

Browse files
authored
Remove unused imported names (#392)
1 parent f762c3c commit f0de23c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/BlockArrays.jl

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export khatri_rao, blockkron, BlockKron
1818

1919
export blockappend!, blockpush!, blockpushfirst!, blockpop!, blockpopfirst!
2020

21-
import Base: @propagate_inbounds, Array, to_indices, to_index,
21+
import Base: @propagate_inbounds, Array, AbstractArray, to_indices, to_index,
2222
unsafe_indices, first, last, size, length, unsafe_length,
2323
unsafe_convert,
2424
getindex, setindex!, ndims, show, view,
@@ -27,13 +27,10 @@ import Base: @propagate_inbounds, Array, to_indices, to_index,
2727
tail, reindex,
2828
RangeIndex, Int, Integer, Number, Tuple,
2929
+, -, *, /, \, min, max, isless, in, copy, copyto!, axes, @deprecate,
30-
BroadcastStyle, checkbounds, throw_boundserror,
30+
BroadcastStyle, checkbounds,
3131
oneunit, ones, zeros, intersect, Slice, resize!
32-
using Base: ReshapedArray, dataids, oneto
33-
import Base: AbstractArray
3432

35-
_maybetail(::Tuple{}) = ()
36-
_maybetail(t::Tuple) = tail(t)
33+
using Base: ReshapedArray, dataids, oneto
3734

3835
import Base: (:), IteratorSize, iterate, axes1, strides, isempty
3936
import Base.Broadcast: broadcasted, DefaultArrayStyle, AbstractArrayStyle, Broadcasted, broadcastable
@@ -45,7 +42,7 @@ import ArrayLayouts: MatLdivVec, MatLmulVec, MatMulMatAdd, MatMulVecAdd, MemoryL
4542
import FillArrays: axes_print_matrix_row
4643

4744
import LinearAlgebra: AbstractTriangular, AdjOrTrans, HermOrSym, RealHermSymComplexHerm, StructuredMatrixStyle,
48-
cholcopy, cholesky, cholesky!, lmul!, rmul!
45+
lmul!, rmul!
4946

5047

5148
if VERSION v"1.11.0-DEV.21"
@@ -57,6 +54,9 @@ else
5754
LinearAlgebra.UnitLowerTriangular{T,S}}
5855
end
5956

57+
_maybetail(::Tuple{}) = ()
58+
_maybetail(t::Tuple) = tail(t)
59+
6060
include("blockindices.jl")
6161
include("blockaxis.jl")
6262
include("abstractblockarray.jl")

0 commit comments

Comments
 (0)