James Moger
2011-10-22 84c1d5c1527183a4e2830deab5b177d880914f1c
src/com/gitblit/models/ServerStatus.java
@@ -17,12 +17,12 @@
import java.io.Serializable;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import java.util.TreeMap;
/**
 * ServerStatus encapsulates runtime status information about the server
 * including the system environment.
 * including some information about the system environment.
 * 
 * @author James Moger
 * 
@@ -33,9 +33,9 @@
   public final Date bootDate;
   
   public final long heapSize;
   public final Map<String, String> systemProperties;
   public final long heapSize;
   
   public volatile long heapAllocated;
   
@@ -46,7 +46,7 @@
      
      heapSize = Runtime.getRuntime().maxMemory();
      
      systemProperties = new HashMap<String, String>();
      systemProperties = new TreeMap<String, String>();
      put("file.encoding");
      put("java.home");
      put("java.io.tmpdir");