Skip to content

Commit

Permalink
[TEAMMATES#11737] Change code style
Browse files Browse the repository at this point in the history
  • Loading branch information
u6656793 committed Oct 28, 2022
1 parent 6fc23b1 commit de5924e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ void initLogicDependencies() {
public Set<String> getGiverSetThatAnswerFeedbackSession(String courseId, String feedbackSessionName) {
Set<String> giverSet = frDb.getGiverSetThatAnswerFeedbackSession(courseId, feedbackSessionName);
List<String> instructorSet = instructorsLogic.getInstructorEmailsForCourse(courseId);
if (!fqLogic.sessionHasQuestionsForGiverType(feedbackSessionName,courseId,FeedbackParticipantType.INSTRUCTORS)) {
if (!fqLogic.sessionHasQuestionsForGiverType(feedbackSessionName, courseId, FeedbackParticipantType.INSTRUCTORS)) {
giverSet.addAll(instructorSet);
}
return giverSet;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,6 @@ private boolean hasFeedbackQuestionEntitiesForGiverType(
.filter("giverType =", giverType)
.keys()
.list().isEmpty();
//.size() != 0
}

@Override
Expand Down

0 comments on commit de5924e

Please sign in to comment.