List of usage examples for org.eclipse.jgit.util RelativeDateFormatter format
@SuppressWarnings("boxing") public static String format(Date when)
From source file:com.google.gitiles.CommitSoyData.java
License:Open Source License
static Map<String, String> toSoyData(PersonIdent ident, GitDateFormatter dateFormatter) { return ImmutableMap.of("name", ident.getName(), "email", ident.getEmailAddress(), "time", dateFormatter.formatDate(ident), // TODO(dborowitz): Switch from relative to absolute at some threshold. "relativeTime", RelativeDateFormatter.format(ident.getWhen())); }