James Moger
2013-11-12 c05da657ec71c46d0e5bc32b074ddcd9d8b76353
src/test/java/com/gitblit/tests/mock/MemorySettings.java
@@ -22,9 +22,9 @@
import com.gitblit.IStoredSettings;
public class MemorySettings extends IStoredSettings {
   private Map<String, Object> backingMap;
   public MemorySettings(Map<String, Object> backingMap) {
      super(MemorySettings.class);
      this.backingMap = backingMap;
@@ -34,10 +34,10 @@
   protected Properties read() {
      Properties props = new Properties();
      props.putAll(backingMap);
      return props;
   }
   public void put(Object key, Object value) {
      backingMap.put(key.toString(), value);
   }