diff options
author | Carsey, Jaben <jaben.carsey@intel.com> | 2018-04-28 06:32:44 +0800 |
---|---|---|
committer | Yonghong Zhu <yonghong.zhu@intel.com> | 2018-05-04 13:03:11 +0800 |
commit | 1360bcb84e3aeef869f7dfe8124da10534b57929 (patch) | |
tree | b4db360e84536e1466c31e18be248f51b8166c8c /BaseTools | |
parent | cb7e6aa77a937f2c28dc57bcffccde69c4080ffb (diff) | |
download | edk2-1360bcb84e3aeef869f7dfe8124da10534b57929.zip edk2-1360bcb84e3aeef869f7dfe8124da10534b57929.tar.gz edk2-1360bcb84e3aeef869f7dfe8124da10534b57929.tar.bz2 |
BaseTools: remove unused member variable
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>
Diffstat (limited to 'BaseTools')
-rw-r--r-- | BaseTools/Source/Python/AutoGen/IdfClassObject.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/AutoGen/IdfClassObject.py b/BaseTools/Source/Python/AutoGen/IdfClassObject.py index 7bc4e4f..769790d 100644 --- a/BaseTools/Source/Python/AutoGen/IdfClassObject.py +++ b/BaseTools/Source/Python/AutoGen/IdfClassObject.py @@ -71,7 +71,6 @@ class IdfFileClassObject(object): for File in FileList:
if File is None:
EdkLogger.error("Image Definition File Parser", PARSER_ERROR, 'No Image definition file is given.')
- self.File = File
try:
IdfFile = open(LongFilePath(File.Path), mode='r')
|