diff options
author | James Moger <james.moger@gitblit.com> | 2013-01-13 16:50:00 -0500 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2013-01-13 16:50:00 -0500 |
commit | 6f44df97395bb11d41720bd796fadf1f829104d4 (patch) | |
tree | c689902a891044d5277e8fcb2cb81f6912262d8a | |
parent | 9cc56a1f60eff2ce1db40b7078eab92e78602e1c (diff) | |
download | gitblit-6f44df97395bb11d41720bd796fadf1f829104d4.tar.gz gitblit-6f44df97395bb11d41720bd796fadf1f829104d4.zip |
Eliminate unused method
-rw-r--r-- | src/com/gitblit/wicket/pages/RepositoryPage.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/com/gitblit/wicket/pages/RepositoryPage.java b/src/com/gitblit/wicket/pages/RepositoryPage.java index 16087fa6..78ffe80d 100644 --- a/src/com/gitblit/wicket/pages/RepositoryPage.java +++ b/src/com/gitblit/wicket/pages/RepositoryPage.java @@ -368,10 +368,6 @@ public abstract class RepositoryPage extends BasePage { return submodules;
}
- protected Map<String, SubmoduleModel> getSubmodules() {
- return submodules;
- }
-
protected SubmoduleModel getSubmodule(String path) {
SubmoduleModel model = submodules.get(path);
if (model == null) {
|