Skip to content

Commit

Permalink
Remove debug lines
Browse files Browse the repository at this point in the history
  • Loading branch information
DilumAluthge committed Aug 15, 2023
1 parent 49c5827 commit 600fa3a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions base/loading.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3119,7 +3119,6 @@ end
f, ftime_req = chi.filename, chi.mtime
if ispath(f)
# `ispath(f)` is true
@debug "`ispath(f)` is true" f isfile(f) startswith(f, Sys.STDLIB) # TODO: delete this line
if isfile(f) && startswith(f, Sys.STDLIB)
# mtime is changed by extraction
@debug "Skipping mtime check for file $f used by $cachefile, since it is a stdlib"
Expand All @@ -3128,7 +3127,6 @@ end
else
# `ispath(f)` is false
_f = fixup_stdlib_path(f)
@debug "`ispath(f)` is false" f _f isfile(_f) startswith(_f, Sys.STDLIB) # TODO: delete this line
if isfile(_f) && startswith(_f, Sys.STDLIB)
# mtime is changed by extraction
@debug "Skipping mtime check for file $f used by $cachefile, since it is a stdlib"
Expand Down

0 comments on commit 600fa3a

Please sign in to comment.