fixed inverse logic misstake
This commit is contained in:
parent
e998e40bc1
commit
7e22375260
1 changed files with 1 additions and 1 deletions
|
@ -389,7 +389,7 @@ public class ExamConfigurationMapDAOImpl implements ExamConfigurationMapDAO {
|
||||||
.build()
|
.build()
|
||||||
.execute()
|
.execute()
|
||||||
.stream()
|
.stream()
|
||||||
.filter(rec -> !isExamActive(rec.getExamId()))
|
.filter(rec -> isExamActive(rec.getExamId()))
|
||||||
.findFirst()
|
.findFirst()
|
||||||
.isPresent());
|
.isPresent());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue