From b1dba764c201f4708b82767b2d91edb6e189ce6f Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Fri, 22 Jul 2011 10:09:18 -0400 Subject: [PATCH] Fixed (again) empty repository check (issue 13) --- src/com/gitblit/build/Build.java | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/src/com/gitblit/build/Build.java b/src/com/gitblit/build/Build.java index 22d61b5..66bf49a 100644 --- a/src/com/gitblit/build/Build.java +++ b/src/com/gitblit/build/Build.java @@ -49,6 +49,11 @@ */ public class Build { + /** + * BuildType enumeration representing compile-time or runtime. This is used + * to download dependencies either for Gitblit GO runtime or for setting up + * a development environment. + */ public static enum BuildType { RUNTIME, COMPILETIME; } @@ -320,6 +325,11 @@ System.out.print("] " + url); } + /** + * MavenObject represents a complete maven artifact (binary, sources, and + * javadoc). MavenObjects can be downloaded and checksummed to confirm + * authenticity. + */ private static class MavenObject { public static final MavenObject JCOMMANDER = new MavenObject("jCommander", "com/beust", -- Gitblit v1.9.1