mirror of https://github.com/acidanthera/audk.git
BaseTools: AutoGen - no need to recompute
looping over a list and recomputing the same value has no impact on final value 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:
parent
92a4eebb37
commit
61f5b77dd5
|
@ -301,8 +301,7 @@ class DbItemList:
|
|||
for ItemIndex in xrange(Index):
|
||||
Offset += len(self.RawDataList[ItemIndex])
|
||||
else:
|
||||
for Datas in self.RawDataList:
|
||||
Offset = self.ItemSize * Index
|
||||
Offset = self.ItemSize * Index
|
||||
|
||||
return Offset
|
||||
|
||||
|
|
Loading…
Reference in New Issue