Skip to content

Commit

Permalink
QStar SOAP Client to prefetch/retrieve or fetch file information of …
Browse files Browse the repository at this point in the history
…specified files #1311
  • Loading branch information
gunterze committed May 17, 2023
1 parent 9a0a71e commit c58915b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ public FilePosition(String filePath, WSGetFileInfoResponse fileInfo) {

@Override
public int compareTo(FilePosition o) {
return vol < o.vol ? -1 : vol > o.vol ? 1 : pos < o.pos ? -1 : pos > o.pos ? 1 : 0;
return vol < o.vol ? -1 : vol > o.vol ? 1 : pos < o.pos ? -1 : pos > o.pos ? 1 : filePath.compareTo(o.filePath);
}

@Override
Expand Down

0 comments on commit c58915b

Please sign in to comment.