Browse Source

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

stable-2.2
Shawn Pearce 12 years ago committed by Gerrit Code Review @ Eclipse.org
parent
commit
69b2a9f539
  1. 2
      org.eclipse.jgit/src/org/eclipse/jgit/blame/Candidate.java

2
org.eclipse.jgit/src/org/eclipse/jgit/blame/Candidate.java

@ -380,7 +380,7 @@ class Candidate {
@Override
PersonIdent getAuthor() {
return new PersonIdent(description, null);
return new PersonIdent(description, "");
}
}
}

Loading…
Cancel
Save