Skip to content
Snippets Groups Projects
Commit 67ae6e6d authored by Thibault Martin's avatar Thibault Martin Committed by Andre Maroneze
Browse files

[kernel] Remove deprecated unknown in Filepath.Normalized

parent 52121bc6
No related branches found
No related tags found
No related merge requests found
...@@ -297,9 +297,7 @@ module Normalized = struct ...@@ -297,9 +297,7 @@ module Normalized = struct
(String.lowercase_ascii s2) (String.lowercase_ascii s2)
let empty = normalize "" let empty = normalize ""
let unknown = empty
let is_empty fp = equal fp empty let is_empty fp = equal fp empty
let is_unknown = is_empty
let special_stdout = normalize "-" let special_stdout = normalize "-"
let is_special_stdout fp = equal fp special_stdout let is_special_stdout fp = equal fp special_stdout
......
...@@ -135,18 +135,6 @@ module Normalized: sig ...@@ -135,18 +135,6 @@ module Normalized: sig
(** Pretty-prints the normalized (absolute) path. *) (** Pretty-prints the normalized (absolute) path. *)
val pp_abs: Format.formatter -> t -> unit val pp_abs: Format.formatter -> t -> unit
(** Unknown filepath, used as 'dummy' for [Datatype.Filepath].
@deprecated 23.0-Vanadium use 'empty' instead
*)
val unknown: t
[@@alert deprecated "Use Filepath.Normalized.empty instead"]
(** @since 20.0-Calcium
@deprecated 23.0-Vanadium use 'is_empty' instead
*)
val is_unknown: t -> bool
[@@alert deprecated "Use Filepath.Normalized.is_empty instead"]
(** Empty filepath, used as 'dummy' for [Datatype.Filepath]. (** Empty filepath, used as 'dummy' for [Datatype.Filepath].
@since 23.0-Vanadium. @since 23.0-Vanadium.
*) *)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment