summaryrefslogtreecommitdiffstats
path: root/src/test/java/com
diff options
context:
space:
mode:
authorJames Moger <james.moger@gitblit.com>2013-11-14 18:10:42 -0500
committerJames Moger <james.moger@gitblit.com>2013-11-14 18:10:42 -0500
commit445b72e789b9414588dccd2d367e43f1e8821039 (patch)
tree7e0411a2cb04a7bf00233715eaa4b0ff42a01f0a /src/test/java/com
parentfab099270c3d53e4d0a3acf0337932f53e5ff14b (diff)
downloadgitblit-445b72e789b9414588dccd2d367e43f1e8821039.tar.gz
gitblit-445b72e789b9414588dccd2d367e43f1e8821039.zip
Eliminate the "enumerate documentation" repository setting
Change-Id: I3a7c13b4c626f8b5ea2a63717dfe4249c19eebb4
Diffstat (limited to 'src/test/java/com')
-rw-r--r--src/test/java/com/gitblit/tests/GitBlitSuite.java11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/test/java/com/gitblit/tests/GitBlitSuite.java b/src/test/java/com/gitblit/tests/GitBlitSuite.java
index ab75408b..96787fdf 100644
--- a/src/test/java/com/gitblit/tests/GitBlitSuite.java
+++ b/src/test/java/com/gitblit/tests/GitBlitSuite.java
@@ -155,7 +155,6 @@ public class GitBlitSuite {
cloneOrFetch("test/ambition.git", "https://github.com/defunkt/ambition.git");
cloneOrFetch("test/gitective.git", "https://github.com/kevinsawicki/gitective.git");
- enableDocs("ticgit.git");
showRemoteBranches("ticgit.git");
automaticallyTagBranchTips("ticgit.git");
showRemoteBranches("test/jgit.git");
@@ -178,16 +177,6 @@ public class GitBlitSuite {
System.out.println("done.");
}
- private static void enableDocs(String repositoryName) {
- try {
- RepositoryModel model = GitBlit.self().getRepositoryModel(repositoryName);
- model.useDocs = true;
- GitBlit.self().updateRepositoryModel(model.name, model, false);
- } catch (GitBlitException g) {
- g.printStackTrace();
- }
- }
-
private static void showRemoteBranches(String repositoryName) {
try {
RepositoryModel model = GitBlit.self().getRepositoryModel(repositoryName);