Parcourir la source

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

tags/v2.2.0.201212191850-r
Shawn Pearce il y a 11 ans
Parent
révision
69b2a9f539
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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 Voir le fichier

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

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

Chargement…
Annuler
Enregistrer