Skip to content

Commit

Permalink
Remove two incorrect rsearch deprecations
Browse files Browse the repository at this point in the history
We do not provide any replacement for these methods which have never been documented.
  • Loading branch information
nalimilan committed Feb 21, 2018
1 parent f48b354 commit b04ffd7
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions base/deprecated.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1217,8 +1217,6 @@ end
@deprecate rsearch(s::AbstractString, c::Union{Tuple{Vararg{Char}},AbstractVector{Char},Set{Char}}) coalesce(findlast(occursin(c), s), 0)
@deprecate rsearch(s::AbstractString, t::AbstractString, i::Integer) findprev(t, s, i)
@deprecate rsearch(s::AbstractString, t::AbstractString) findlast(t, s)
@deprecate rsearch(s::ByteArray, t::ByteArray, i::Integer) findprev(t, s, i)
@deprecate rsearch(s::ByteArray, t::ByteArray) findlast(t, s)

@deprecate rsearch(str::Union{String,SubString}, re::Regex, idx::Integer) findprev(re, str, idx)
@deprecate rsearch(str::Union{String,SubString}, re::Regex) findlast(re, str)
Expand Down

0 comments on commit b04ffd7

Please sign in to comment.