James Moger
2011-06-01 a1ea877042b93949ef244b96e8affd65cc3f89c1
src/com/gitblit/FileSettings.java
@@ -35,7 +35,7 @@
   private final Logger logger = LoggerFactory.getLogger(FileSettings.class);
   private final File propertiesFile;
   private Properties properties = new Properties();
   private long lastread;
@@ -43,7 +43,7 @@
   public FileSettings(String file) {
      this.propertiesFile = new File(file);
   }
   @Override
   public List<String> getAllKeys(String startingWith) {
      startingWith = startingWith.toLowerCase();
@@ -144,7 +144,7 @@
      return strings;
   }
   private synchronized Properties read() {
   private synchronized Properties read() {
      if (propertiesFile.exists() && (propertiesFile.lastModified() > lastread)) {
         FileInputStream is = null;
         try {