CodesAway / CodesAway/BEXCodeCompare
CompareDirectories.findDifferences - compare should be using this.pathComparator
Open
- Dominant language
- Java
- Stars
- 7
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
Currently, the code is using the Path compare and not the specified comparator
` int compare = relativePath.applyAsInt(Path::compareTo);`
Should be replaced with
` int compare = relativePath.applyAsInt(this.pathComparator::compare);`
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.