[lldb][NFC] Simplify if-return

This commit is contained in:
Tatyana Krasnukha 2019-12-11 17:16:38 +03:00
parent a58bd0e42c
commit 04359f48f0
1 changed files with 1 additions and 3 deletions

View File

@ -18,9 +18,7 @@ public:
result = subcommand(dbg, "help");
// Test also whether self-assignment is handled correctly.
result = result;
if (!result.Succeeded())
return false;
return true;
return result.Succeeded();
}
};