diff --git a/src/InputParser/keywords/props.jl b/src/InputParser/keywords/props.jl index c0f0822..d4f21e5 100644 --- a/src/InputParser/keywords/props.jl +++ b/src/InputParser/keywords/props.jl @@ -83,7 +83,6 @@ function parse_keyword!(data, outer_data, units, cfg, f, ::Val{:ZCRIT}) end function parse_keyword!(data, outer_data, units, cfg, f, ::Val{:SSHIFT}) - parser_message(cfg, outer_data, "SSHIFT", PARSER_JUTULDARCY_MISSING_SUPPORT) data["SSHIFT"] = parse_compositional_helper!(f, outer_data, data, "SSHIFT") end diff --git a/src/InputParser/keywords/runspec.jl b/src/InputParser/keywords/runspec.jl index c9e574e..ea9474a 100644 --- a/src/InputParser/keywords/runspec.jl +++ b/src/InputParser/keywords/runspec.jl @@ -173,7 +173,6 @@ end function parse_keyword!(data, outer_data, units, cfg, f, ::Val{:ENDSCALE}) rec = read_record(f) - parser_message(cfg, outer_data, "ENDSCALE", PARSER_JUTULDARCY_PARTIAL_SUPPORT) tdims = ["NODIR", "REVERS", 1, 20, 0]; props = get_section(outer_data, :PROPS, set_current = false) if !haskey(props, "SCALECRS") diff --git a/src/InputParser/utils.jl b/src/InputParser/utils.jl index 67a80c9..1401b39 100644 --- a/src/InputParser/utils.jl +++ b/src/InputParser/utils.jl @@ -689,7 +689,7 @@ function unit_type(x::Symbol) end function unit_type(::Val{k}) where k - if !(k in (:FIPNUM, :EQLNUM, :PVTNUM, :SATNUM, :EQLNUM)) + if !(k in (:FIPNUM, :EQLNUM, :PVTNUM, :SATNUM, :EQLNUM, :KRW, :KRO, :KRG)) @warn "Unit type not defined for $k." end return :id