From 88598bb2f779b73479512d818c675dea8fa72138 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Fri, 22 Jul 2011 09:37:14 -0400 Subject: [PATCH] Documentation. Unit testing. Checkstyle. Findbugs. --- src/com/gitblit/GitBlitServer.java | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/com/gitblit/GitBlitServer.java b/src/com/gitblit/GitBlitServer.java index 92305fc..2caaaf6 100644 --- a/src/com/gitblit/GitBlitServer.java +++ b/src/com/gitblit/GitBlitServer.java @@ -176,7 +176,7 @@ } if (params.securePort < 1024 && !isWindows()) { logger.warn("Gitblit needs to run with ROOT permissions for ports < 1024!"); - } + } connectors.add(secureConnector); } else { logger.warn("Failed to find or load Keystore?"); @@ -315,7 +315,7 @@ connector.setMaxIdleTime(30000); return connector; } - + /** * Tests to see if the operating system is Windows. * @@ -376,6 +376,9 @@ } } + /** + * JCommander Parameters class for GitBlitServer. + */ @Parameters(separators = " ") private static class Params { -- Gitblit v1.9.1