aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/lib.rs b/src/lib.rs
index babfc34..0c934ec 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -900,13 +900,9 @@ impl Log {
/// [`Analyzer::outcome`][Analyzer::outcome] method, which does more sophisticated checks
/// (dependent on the boss).
pub fn was_rewarded(&self) -> bool {
- self.events().iter().any(|e| {
- if let EventKind::Reward { .. } = e.kind() {
- true
- } else {
- false
- }
- })
+ self.events()
+ .iter()
+ .any(|e| matches!(e.kind(), EventKind::Reward { .. }))
}
/// Returns all error strings that were captured.