James Moger
2011-11-10 4eb1d83ac51f9b0a8813e7c1ed8e106e37c18562
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",