Skip to content

Commit

Permalink
Update sudoku equality builder to new QF_EQ syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
paultristanwagner committed Jul 15, 2024
1 parent 4355677 commit db6cce8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ private String constant(int i) {
}

private void equal(String a, String b) {
builder.append("[").append(a).append("=").append(b).append("]");
builder.append(a).append("=").append(b);
}

private void notEqual(String a, String b) {
builder.append("[").append(a).append("!=").append(b).append("]");
builder.append(a).append("!=").append(b);
}

public String build() {
Expand Down

0 comments on commit db6cce8

Please sign in to comment.