Skip to content

Commit

Permalink
remove unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
chengchingwen committed Jun 19, 2022
1 parent 341e298 commit 418fc41
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/macro.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,6 @@ function get_artifacts_toml_sym()
return ARTIFACTS_TOML_VAR_SYM[]
end

function cached_my_artifact_toml_path(mod::Module)
sym = get_artifacts_toml_sym()
!isdefined(mod, sym) && return nothing
path = getfield(mod, sym)
return (path isa Ref ? path[] : path)::String
end

function cached_my_artifact_toml_expr(mod::Module)
sym = get_artifacts_toml_sym()
!isdefined(mod, sym) && return nothing
Expand Down

2 comments on commit 418fc41

@chengchingwen
Copy link
Owner Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

@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/62649

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.3.0 -m "<description of version>" 418fc41685cd09127fcbe0bed807686301bfd456
git push origin v0.3.0

Please sign in to comment.