James Moger
2012-03-25 5e43f65d95b7e68a7ed90fe17be4594f4d974f4e
src/com/gitblit/client/GitblitManager.java
@@ -400,7 +400,7 @@
   }
   private void loadFeedCache(GitblitRegistration reg) {
      File feedCache = new File(configFile.getParentFile(), StringUtils.getSHA1(reg.url)
      File feedCache = new File(configFile.getParentFile(), StringUtils.getSHA1(reg.toString())
            + ".cache");
      if (!feedCache.exists()) {
         // no cache for this registration
@@ -429,8 +429,8 @@
   private void writeFeedCache(GitblitRegistration reg) {
      try {
         File feedCache = new File(configFile.getParentFile(), StringUtils.getSHA1(reg.url)
               + ".cache");
         File feedCache = new File(configFile.getParentFile(), StringUtils.getSHA1(reg
               .toString()) + ".cache");
         FileWriter writer = new FileWriter(feedCache);
         for (FeedModel feed : reg.feeds) {
            writer.append(MessageFormat.format("{0}={1,date,yyyy-MM-dd'T'HH:mm:ss}\n",