Skip to content

Commit

Permalink
Finished all class implementation for select question usecase
Browse files Browse the repository at this point in the history
  • Loading branch information
YifanLiu2 committed Jul 19, 2023
1 parent e4fe350 commit 096be72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/userentities/Attorney.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public boolean isQuestionSelectable(Question question) {
if (isClose) {
return false;
} else if (! isTaken) {
return false;
return true;
} else {
return takenByAttorney == userId;
}
Expand Down

0 comments on commit 096be72

Please sign in to comment.