Browse Source

Merge "[blame] Don't pass null to PersonIdent constructor"

tags/v2.2.0.201212191850-r
Shawn Pearce 11 years ago
parent
commit
69b2a9f539
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/blame/Candidate.java

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/blame/Candidate.java View File

@@ -380,7 +380,7 @@ class Candidate {

@Override
PersonIdent getAuthor() {
return new PersonIdent(description, null);
return new PersonIdent(description, "");
}
}
}

Loading…
Cancel
Save