Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ Changes log

- 2.7 Milestone 3 (??-??-2025)
- Bugs fixed
- Reuse an instance of Random class in RandomUtils. Issue #1487.
- Complete test classes. Issue #1490.
- Reuse an instance of Random class in RandomUtils. Issue #1487.
- Complete test classes. Issue #1490.
- Avoid non-short-circuit logic in FileClientHelper. Issue #1495.

- 2.7 Milestone 2 (29-06-2025)
- Misc
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ private static boolean isFileInDirectory(final Directory directory, final File f
final String fileAbsolute = directory.getRootRef().getPath(true);
final String filePath;

if (fileAbsolute.indexOf(':') == 2 | fileAbsolute.indexOf('|') == 2) {
if (fileAbsolute.indexOf(':') == 2 || fileAbsolute.indexOf('|') == 2) {
filePath = fileAbsolute.substring(1);
} else {
filePath = fileAbsolute;
Expand Down
Loading