Skip to content

Commit

Permalink
Deprecate `where_referenced(notebook::Notebook, topology::NotebookTop…
Browse files Browse the repository at this point in the history
…ology, something)` and `where_assigned(notebook::Notebook, topology::NotebookTopology, something)`
  • Loading branch information
fonsp committed Oct 10, 2024
1 parent b9773ae commit e544220
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/notebook/Notebook.jl
Original file line number Diff line number Diff line change
Expand Up @@ -129,17 +129,6 @@ function PlutoDependencyExplorer.topological_order(notebook::Notebook)
end
end

function PlutoDependencyExplorer.where_referenced(notebook::Notebook, topology::NotebookTopology, something)
# can't use @deprecate on an overload
@warn "Deprecated, drop the notebook argument"
PlutoDependencyExplorer.where_referenced(topology, something)
end
function PlutoDependencyExplorer.where_assigned(notebook::Notebook, topology::NotebookTopology, something)
# can't use @deprecate on an overload
@warn "Deprecated, drop the notebook argument"
PlutoDependencyExplorer.where_assigned(topology, something)
end

emptynotebook(args...) = Notebook([Cell()], args...)

function sample_notebook(name::String)
Expand Down

0 comments on commit e544220

Please sign in to comment.