Skip to content

Commit

Permalink
remove likely unused method (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
keorn authored Nov 8, 2021
1 parent 7af6ad4 commit 9f10340
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/realized.jl
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,6 @@ Base.show(io::IO, r::RealizedSamples) = Pretty.pprint(io, r)

Pretty.quoteof(r::RealizedSamples) = :(RealizedSamples($(Pretty.quoteof(r.parent.rng)), $(Pretty.quoteof(r.parent.iter))))

function Base.iterate(rm::RealizedSamples)
val, s = iterate(rm.parent)
(val.element, s)
end

function Base.iterate(rm::RealizedSamples, s=nothing)
val, s = iterate(rm.parent, s)
(val.element, s)
Expand Down

2 comments on commit 9f10340

@cscherrer
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/48405

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.13.2 -m "<description of version>" 9f1034060220fe66ed55ced9bdf324d04e8f78cd
git push origin v0.13.2

Please sign in to comment.