2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00

Use HasFlag in another spot. (#68)

Just a tiny cleanup.
This commit is contained in:
F K 2022-03-23 06:42:28 -04:00 committed by GitHub
parent 3e202d6ac7
commit 0c86590f75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -102,7 +102,7 @@ namespace Observatory.Framework
/// <returns>A boolean; True iff the state provided represents a batch-mode read.</returns>
public static bool IsBatchRead(LogMonitorState state)
{
return (state & (LogMonitorState.Batch | LogMonitorState.PreRead)) > 0;
return state.HasFlag(LogMonitorState.Batch) || state.HasFlag(LogMonitorState.PreRead);
}
}
}