BaseTools: use built in OrderedDict instead of custom version.
We dont use any feature added by custom dictionary class. Cc: Liming Gao <liming.gao@intel.com> Cc: Yonghong Zhu <yonghong.zhu@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Jaben Carsey <jaben.carsey@intel.com> Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
This commit is contained in:
committed by
Yonghong Zhu
parent
0d8ff45567
commit
6e6d767edf
@ -13,7 +13,7 @@
|
||||
|
||||
import Common.LongFilePathOs as os
|
||||
|
||||
from Common.Misc import sdict
|
||||
from collections import OrderedDict
|
||||
from Common.Misc import RealPath2
|
||||
from Common.BuildToolError import *
|
||||
from Common.DataType import *
|
||||
@ -281,7 +281,7 @@ class ModuleBuildClassObject(object):
|
||||
|
||||
self.Binaries = []
|
||||
self.Sources = []
|
||||
self.LibraryClasses = sdict()
|
||||
self.LibraryClasses = OrderedDict()
|
||||
self.Libraries = []
|
||||
self.Protocols = []
|
||||
self.Ppis = []
|
||||
|
Reference in New Issue
Block a user