Skip to content

Commit

Permalink
Change naming for debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Tecnio committed Sep 24, 2023
1 parent b98b8e8 commit 3cbd1ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/me/tecnio/ahm/check/impl/flight/FlightA.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void handle(final PositionUpdate update) {
if (invalid && !exempt) {
// Trigger a violation if the conditions are met and the buffer threshold is exceeded.
if (this.buffer.increase() > 2) {
this.fail("yD: %s", Math.abs(deltaY - predicted));
this.fail("oY: %s", Math.abs(deltaY - predicted));
}
} else {
// Decrease the buffer if the conditions are not met.
Expand Down

0 comments on commit 3cbd1ac

Please sign in to comment.