aboutsummaryrefslogtreecommitdiff
path: root/parsing/entry.ml
diff options
context:
space:
mode:
Diffstat (limited to 'parsing/entry.ml')
-rw-r--r--parsing/entry.ml8
1 files changed, 2 insertions, 6 deletions
diff --git a/parsing/entry.ml b/parsing/entry.ml
index 97d601320d..0519903d3d 100644
--- a/parsing/entry.ml
+++ b/parsing/entry.ml
@@ -11,9 +11,7 @@ open Util
type 'a t = string * string
-type repr =
-| Static of string * string
-| Dynamic of string
+type repr = string * string
type universe = string
@@ -58,6 +56,4 @@ let unsafe_of_name (u, s) =
assert (String.Set.mem uname !entries);
(u, s)
-let repr = function
-| ("", u) -> Dynamic u
-| (u, s) -> Static (u, s)
+let repr (u, s) = (u, s)