From 02c1e298dc86f69b3e2a7b37048152ea55b3fa8c Mon Sep 17 00:00:00 2001 From: Mrbytes <eguervos@msn.com> Date: Thu, 04 Oct 2012 06:40:24 -0400 Subject: [PATCH] GitBlitWebApp_es.properties: Updated with the new "fork" changes Other small corrections of syntax --- src/com/gitblit/client/GitblitRegistration.java | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/src/com/gitblit/client/GitblitRegistration.java b/src/com/gitblit/client/GitblitRegistration.java index 33399b1..f9d0748 100644 --- a/src/com/gitblit/client/GitblitRegistration.java +++ b/src/com/gitblit/client/GitblitRegistration.java @@ -71,11 +71,16 @@ } } + protected void cacheFeeds() { + } + @Override public int compareTo(GitblitRegistration o) { return name.toLowerCase().compareTo(o.name.toLowerCase()); } - protected void cacheFeeds() { + @Override + public String toString() { + return name + " (" + url + ")"; } } -- Gitblit v1.9.1