diff options
author | James Moger <james.moger@gitblit.com> | 2011-04-14 19:44:47 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2011-04-14 19:44:47 -0400 |
commit | 155bf78e3377910d29b2c912f58c0f496cb428e8 (patch) | |
tree | be65a3b6276499c914f3a3f0994dfde9956f4dc9 /src/com/gitblit/wicket/pages/BranchesPage.java | |
parent | fc948cacef9c9b8c0a1e84cbc082ca67cd5f68d9 (diff) | |
download | gitblit-155bf78e3377910d29b2c912f58c0f496cb428e8.tar.gz gitblit-155bf78e3377910d29b2c912f58c0f496cb428e8.zip |
Generate Keys class from gitblit.properties as part of build process.
Diffstat (limited to 'src/com/gitblit/wicket/pages/BranchesPage.java')
-rw-r--r-- | src/com/gitblit/wicket/pages/BranchesPage.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/com/gitblit/wicket/pages/BranchesPage.java b/src/com/gitblit/wicket/pages/BranchesPage.java index f4359d81..49088f0d 100644 --- a/src/com/gitblit/wicket/pages/BranchesPage.java +++ b/src/com/gitblit/wicket/pages/BranchesPage.java @@ -5,7 +5,6 @@ import org.apache.wicket.PageParameters; import com.gitblit.wicket.RepositoryPage;
import com.gitblit.wicket.panels.BranchesPanel;
-
public class BranchesPage extends RepositoryPage {
public BranchesPage(PageParameters params) {
@@ -13,7 +12,7 @@ public class BranchesPage extends RepositoryPage { add(new BranchesPanel("branchesPanel", repositoryName, getRepository(), -1));
}
-
+
@Override
protected String getPageName() {
return getString("gb.branches");
|