Skip to content

Commit

Permalink
chore: fix checkstyle warning
Browse files Browse the repository at this point in the history
- inner assignments should be avoided
  • Loading branch information
TruongNhanNguyen committed May 23, 2024
1 parent ac587d3 commit 211387b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ private static class Node {

Node(int key) {
this.key = key;
left = right = null;
left = null;
right = null;
}
}

Expand Down

0 comments on commit 211387b

Please sign in to comment.