Skip to content

Commit

Permalink
Change order of arguments in call
Browse files Browse the repository at this point in the history
  • Loading branch information
rowleya committed Jan 31, 2025
1 parent 0310a40 commit 2e86b29
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,7 @@ public Boolean dimensionsAt(CreateDimensionsAt da) {
public Boolean board(CreateBoard b) {
try (var check = conn.query(CHECK_LOCATION)) {
int board = locateBoard(conn, m.name, b, false);
return check.call1((r) -> true, board, m.id).isPresent();
return check.call1((r) -> true, m.id, board).isPresent();
} catch (IllegalArgumentException e) {
// This means the board doesn't exist on the given machine
return false;
Expand Down

0 comments on commit 2e86b29

Please sign in to comment.