We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 439d263 commit 48ac449Copy full SHA for 48ac449
4 files changed
src/FileFormats/MOF/MOF.jl
@@ -7,7 +7,6 @@
7
module MOF
8
9
import ..FileFormats
10
-import OrderedCollections: OrderedDict
11
import JSON
12
import MathOptInterface as MOI
13
@@ -33,10 +32,6 @@ const _SUPPORTED_VERSIONS = (
33
32
v"0.4",
34
)
35
36
-const OrderedObject = OrderedDict{String,Any}
37
-const UnorderedObject = Dict{String,Any}
38
-const Object = Union{OrderedObject,UnorderedObject}
39
-
40
function _parse_mof_version(version)
41
return VersionNumber(version["major"], version["minor"])
42
end
0 commit comments