James Moger
2012-10-03 c25b9801899e86753dd6ba80ebc68102ee37a21c
src/com/gitblit/utils/JsonUtils.java
@@ -295,7 +295,8 @@
            JsonDeserializationContext jsonDeserializationContext) {
         try {
            synchronized (dateFormat) {
               return dateFormat.parse(jsonElement.getAsString());
               Date date = dateFormat.parse(jsonElement.getAsString());
               return new Date((date.getTime() / 1000) * 1000);
            }
         } catch (ParseException e) {
            throw new JsonSyntaxException(jsonElement.getAsString(), e);