Skip to content

Commit 0882bb3

Browse files
committed
remove long deprecated multi-arg print_tree methods
1 parent 6aca11e commit 0882bb3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/printing.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,8 +265,8 @@ function print_tree(printnode::Function, io::IO, node;
265265
end
266266
end
267267

268-
print_tree(io::IO, tree, args...; kwargs...) = print_tree(printnode, io, tree, args...; kwargs...)
269-
print_tree(tree, args...; kwargs...) = print_tree(stdout::IO, tree, args...; kwargs...)
268+
print_tree(io::IO, node; kw...) = print_tree(printnode, io, node; kw...)
269+
print_tree(tree, node; kw...) = print_tree(stdout, node; kw...)
270270

271271

272272
"""

0 commit comments

Comments
 (0)