Skip to content

Commit 48ac449

Browse files
authored
[FileFormats.MOF] remove all usage of OrderedDict (#2607)
1 parent 439d263 commit 48ac449

File tree

4 files changed

+129
-136
lines changed

4 files changed

+129
-136
lines changed

src/FileFormats/MOF/MOF.jl

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
module MOF
88

99
import ..FileFormats
10-
import OrderedCollections: OrderedDict
1110
import JSON
1211
import MathOptInterface as MOI
1312

@@ -33,10 +32,6 @@ const _SUPPORTED_VERSIONS = (
3332
v"0.4",
3433
)
3534

36-
const OrderedObject = OrderedDict{String,Any}
37-
const UnorderedObject = Dict{String,Any}
38-
const Object = Union{OrderedObject,UnorderedObject}
39-
4035
function _parse_mof_version(version)
4136
return VersionNumber(version["major"], version["minor"])
4237
end

0 commit comments

Comments
 (0)