diff options
author | Laszlo Ersek <lersek@redhat.com> | 2020-01-16 11:44:09 +0100 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2020-01-31 09:35:31 +0000 |
commit | eccb856f013aec700234211e7371f03454ef9d52 (patch) | |
tree | a7ef6307d3d6bc64d2c0c8894d4e65d0831a5297 /BaseTools/Source/Python/Workspace/InfBuildData.py | |
parent | 1e0f973b65c34841288c25fd441a37eec8a30ac7 (diff) | |
download | edk2-eccb856f013aec700234211e7371f03454ef9d52.tar.gz edk2-eccb856f013aec700234211e7371f03454ef9d52.tar.bz2 edk2-eccb856f013aec700234211e7371f03454ef9d52.zip |
SecurityPkg/DxeImageVerificationHandler: remove "else" after return/break
In the code structure
if (condition) {
//
// block1
//
return;
} else {
//
// block2
//
}
nesting "block2" in an "else" branch is superfluous, and harms
readability. It can be transformed to:
if (condition) {
//
// block1
//
return;
}
//
// block2
//
with identical behavior, and improved readability (less nesting).
The same applies to "break" (instead of "return") in a loop body.
Perform these transformations on DxeImageVerificationHandler().
This patch is a no-op for behavior. Use
git show -b -W
for reviewing it more easily.
Cc: Chao Zhang <chao.b.zhang@intel.com>
Cc: Jian J Wang <jian.j.wang@intel.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=2129
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Message-Id: <20200116190705.18816-3-lersek@redhat.com>
Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com>
[lersek@redhat.com: push with Mike's R-b due to Chinese New Year
Holiday: <https://edk2.groups.io/g/devel/message/53429>; msgid
<d3fbb76dabed4e1987c512c328c82810@intel.com>]
Diffstat (limited to 'BaseTools/Source/Python/Workspace/InfBuildData.py')
0 files changed, 0 insertions, 0 deletions