diff options
author | Carsey, Jaben </o=Intel/ou=Americas01/cn=Workers/cn=Carsey, Jaben> | 2018-03-14 07:11:34 +0800 |
---|---|---|
committer | Yonghong Zhu <yonghong.zhu@intel.com> | 2018-03-19 09:26:21 +0800 |
commit | 47f7040ddbdfea033ef6e6b76f4c8fa19f67aaae (patch) | |
tree | d16bdd946bc413ccad6441a2ca2b3a9c4ec1c583 /BaseTools | |
parent | 3e8bab960eca8464ab1d0f2ad3f06a2ccc925f95 (diff) | |
download | edk2-47f7040ddbdfea033ef6e6b76f4c8fa19f67aaae.zip edk2-47f7040ddbdfea033ef6e6b76f4c8fa19f67aaae.tar.gz edk2-47f7040ddbdfea033ef6e6b76f4c8fa19f67aaae.tar.bz2 |
BaseTools: Expression - remove variable
The InArary variable serves no purpose. just do the work immediately.
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Cc: Liming Gao <liming.gao@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/Common/Expression.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/BaseTools/Source/Python/Common/Expression.py b/BaseTools/Source/Python/Common/Expression.py index 85c1ce9..4f0f377 100644 --- a/BaseTools/Source/Python/Common/Expression.py +++ b/BaseTools/Source/Python/Common/Expression.py @@ -123,7 +123,6 @@ def IsValidCName(Str): return True if __ValidString.match(Str) else False
def BuildOptionValue(PcdValue, GuidDict):
- IsArray = False
if PcdValue.startswith('H'):
InputValue = PcdValue[1:]
elif PcdValue.startswith("L'") or PcdValue.startswith("'"):
@@ -133,8 +132,6 @@ def BuildOptionValue(PcdValue, GuidDict): else:
InputValue = PcdValue
if IsFieldValueAnArray(InputValue):
- IsArray = True
- if IsArray:
try:
PcdValue = ValueExpressionEx(InputValue, 'VOID*', GuidDict)(True)
except:
|