From 124382da3d308483b068df7a65122ff6d98f2e21 Mon Sep 17 00:00:00 2001
From: James Moger <james.moger@gitblit.com>
Date: Thu, 12 Dec 2013 08:19:33 -0500
Subject: [PATCH] Fixed regression in /r/ security due to Servlet 2.5 rollback
---
src/main/java/com/gitblit/utils/MetricUtils.java | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/main/java/com/gitblit/utils/MetricUtils.java b/src/main/java/com/gitblit/utils/MetricUtils.java
index 26e4581..4703102 100644
--- a/src/main/java/com/gitblit/utils/MetricUtils.java
+++ b/src/main/java/com/gitblit/utils/MetricUtils.java
@@ -39,9 +39,9 @@
/**
* Utility class for collecting metrics on a branch, tag, or other ref within
* the repository.
- *
+ *
* @author James Moger
- *
+ *
*/
public class MetricUtils {
@@ -49,7 +49,7 @@
/**
* Log an error message and exception.
- *
+ *
* @param t
* @param repository
* if repository is not null it MUST be the {0} parameter in the
@@ -74,12 +74,12 @@
* Returns the list of metrics for the specified commit reference, branch,
* or tag within the repository. If includeTotal is true, the total of all
* the metrics will be included as the first element in the returned list.
- *
+ *
* If the dateformat is unspecified an attempt is made to determine an
* appropriate date format by determining the time difference between the
* first commit on the branch and the most recent commit. This assumes that
* the commits are linear.
- *
+ *
* @param repository
* @param objectId
* if null or empty, HEAD is assumed.
@@ -172,7 +172,7 @@
/**
* Returns a list of author metrics for the specified repository.
- *
+ *
* @param repository
* @param objectId
* if null or empty, HEAD is assumed.
--
Gitblit v1.9.1