diff --git a/gerrit-gwtui-common/src/main/java/com/google/gerrit/client/RelativeDateFormatter.java b/gerrit-gwtui-common/src/main/java/com/google/gerrit/client/RelativeDateFormatter.java index 3045180307..7c62ed7c38 100644 --- a/gerrit-gwtui-common/src/main/java/com/google/gerrit/client/RelativeDateFormatter.java +++ b/gerrit-gwtui-common/src/main/java/com/google/gerrit/client/RelativeDateFormatter.java @@ -37,7 +37,6 @@ public class RelativeDateFormatter { * @return age of given {@link Date} compared to now formatted in the same relative format as * returned by {@code git log --relative-date} */ - @SuppressWarnings("boxing") public static String format(Date when) { long ageMillis = (new Date()).getTime() - when.getTime();