From 2c0555f90ecb61a068754569e2624a6569b89a2c Mon Sep 17 00:00:00 2001 From: Fabrice Bacchella <fbacchella@spamcop.net> Date: Fri, 15 May 2015 16:36:45 -0400 Subject: [PATCH] A patch that allows to extract a new user informations from the HTTP session if the webapp container can fill it. --- src/main/java/com/gitblit/utils/ClientLogger.java | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/com/gitblit/utils/ClientLogger.java b/src/main/java/com/gitblit/utils/ClientLogger.java index 7d18f3d..3570cbe 100644 --- a/src/main/java/com/gitblit/utils/ClientLogger.java +++ b/src/main/java/com/gitblit/utils/ClientLogger.java @@ -26,9 +26,9 @@ /** * Class to log messages to the pushing Git client. Intended to be used by the * Groovy Hooks. - * + * * @author John Crygier - * + * */ public class ClientLogger { @@ -41,7 +41,7 @@ /** * Sends an info/warning message to the git client. - * + * * @param message */ public void info(String message) { @@ -50,7 +50,7 @@ /** * Sends an error message to the git client. - * + * * @param message */ public void error(String message) { @@ -59,7 +59,7 @@ /** * Sends an error message to the git client with an exception. - * + * * @param message * @param t * an exception -- Gitblit v1.9.1