Skip to content

Commit

Permalink
Minor style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Nov 14, 2024
1 parent 2f40cbe commit 2f8b018
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ public void finishBackground(@Nullable StepResult stepResult, @Nonnull ScenarioR
private Date getStepStartTime(@Nonnull Maybe<String> stepId) {
long currentStepStartTime = Calendar.getInstance().getTime().getTime();

if (!stepStartTimeMap.keySet().isEmpty()) {
if (!stepStartTimeMap.isEmpty()) {
long lastStepStartTime = stepStartTimeMap.get(stepId);

if (lastStepStartTime >= currentStepStartTime) {
Expand Down

0 comments on commit 2f8b018

Please sign in to comment.