Skip to content

Commit 15ffe99

Browse files
committed
refactor: remove unused method
1 parent 18d2cb2 commit 15ffe99

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

src/arrays.jl

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -127,14 +127,6 @@ end
127127
return (q1_converted, q2_converted)
128128
end
129129

130-
@inline function promote_except_value(q1::QA1, q2::Q2) where {
131-
T1,D1,T2,D2,Q1,Q2<:UnionAbstractQuantity{T2,D2},
132-
QA1<:QuantityArray{T1,N1,D1,Q1} where N1,
133-
}
134-
q2_converted, q1_converted = promote_except_value(q2, q1)
135-
return (q1_converted, q2_converted)
136-
end
137-
138130
function Base.convert(::Type{QA}, A::QA) where {QA<:QuantityArray}
139131
return A
140132
end
@@ -358,7 +350,7 @@ Base.fill(x::UnionAbstractQuantity, t::Tuple{}) = QuantityArray(fill(ustrip(x),
358350

359351
# Will be overloaded by `DynamicQuantitiesLinearAlgebraExt`:
360352
function norm end
361-
is_ext_loaded(::Val) = false
353+
is_ext_loaded(::Val) = false # COV_EXCL_LINE
362354

363355
# Define isapprox for vectors of Quantity's
364356
struct AutoTolerance end

0 commit comments

Comments
 (0)