We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, Min version calculation initial value should be fixed in WcVersion.java. The current implementation (checked out on the date of bug submission) always keeps min version at 0. Also the wrong version number item is used for calculating the revision range. Please, consider changing the code according to e.g. the following diff to keep it in sync with svnversion's output: 202c202 < protected long minRevision = 0; --- > protected long minRevision = Long.MAX_VALUE; 248,256c248,258 < SVNRevision.Number rev = status.getLastChangedRevision(); < long revNum = (rev != null) ? rev.getNumber() : 0; < if( revNum > this.maxRevision ) { < this.maxRevision = revNum; < } < < if( revNum < this.minRevision ) { < this.minRevision = revNum; < } --- > SVNRevision.Number rev = status.getRevision(); > if (rev != null) { > long revNum = rev.getNumber(); > if( revNum > this.maxRevision ) { > this.maxRevision = revNum; > } > > if( revNum < this.minRevision ) { > this.minRevision = revNum; > } > } 266c268,271 < if( (this.minRevision > 0) && (this.minRevision != this.maxRevision) ) { --- > if (this.minRevision > this.maxRevision) { > this.minRevision = this.maxRevision; > } > else if( (this.minRevision > 0) && (this.minRevision != this.maxRevision) ) {
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Metadata Imported from Tigris (Issue 1403)
The text was updated successfully, but these errors were encountered: