Skip to content
New issue

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

WcVersion mixes up version numbers [Tigris #1403] #10

Open
markphip opened this issue Sep 15, 2016 · 0 comments
Open

WcVersion mixes up version numbers [Tigris #1403] #10

markphip opened this issue Sep 15, 2016 · 0 comments
Labels

Comments

@markphip
Copy link
Contributor

Description

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) ) {

Metadata Imported from Tigris (Issue 1403)

  • Creation Date: 2012-04-12 16:56:33
  • Reporter: johndoe0413
  • Subcomponent: svnant
  • Version: unspecified
  • Milestone: not determined
  • Keywords:
  • Cc:
@markphip markphip added the bug label Sep 15, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant