Skip to content

Commit

Permalink
[FIXED JENKINS-15826] use full name for matching file exclude regions
Browse files Browse the repository at this point in the history
  • Loading branch information
mc1arke committed Oct 20, 2013
1 parent bd7dc36 commit 9d10212
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/hudson/scm/CvsLog.java
Expand Up @@ -423,7 +423,7 @@ private void saveChange(final CVSChangeLogSet.File file, final CVSChangeLog chan
// we only want the first listing of this file since changes are
// sorted in reverse order of when they were made
if (!files.containsKey(file.getFullName())) {
final CvsFile cvsFile = new CvsFile(file.getSimpleName(), file.getRevision(), file.isDead());
final CvsFile cvsFile = new CvsFile(file.getFullName(), file.getRevision(), file.isDead());
files.put(file.getFullName(), cvsFile);
}

Expand Down

0 comments on commit 9d10212

Please sign in to comment.