use of org.eclipse.jgit.util.GitDateFormatter in project gerrit by GerritCodeReview.
the class NoteDbUtil method formatTime.
public static String formatTime(PersonIdent ident, Timestamp t) {
GitDateFormatter dateFormatter = new GitDateFormatter(Format.DEFAULT);
// TODO(dborowitz): Use a ThreadLocal or use Joda.
PersonIdent newIdent = new PersonIdent(ident, t);
return dateFormatter.formatDate(newIdent);
}
use of org.eclipse.jgit.util.GitDateFormatter in project gerrit by GerritCodeReview.
the class ChangeNoteUtil method formatTime.
public static String formatTime(PersonIdent ident, Timestamp t) {
GitDateFormatter dateFormatter = new GitDateFormatter(Format.DEFAULT);
// TODO(dborowitz): Use a ThreadLocal or use Joda.
PersonIdent newIdent = new PersonIdent(ident, t);
return dateFormatter.formatDate(newIdent);
}
Aggregations