]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.nativemem/src/org/simantics/nativemem/internal/DummyProcessMemoryInfo.java
Allow tab-separated columnized logging of memory use
[simantics/platform.git] / bundles / org.simantics.nativemem / src / org / simantics / nativemem / internal / DummyProcessMemoryInfo.java
index 8f001c47b49267d92a4e1fbe73b7715a4c7039ee..032d4fb5d2649cd7bfea638ae42880546d07aa27 100644 (file)
@@ -21,7 +21,17 @@ public enum DummyProcessMemoryInfo implements ProcessMemoryInfo {
 
        @Override
        public String toHumanReadableString() {
-               return "Memory consumption information not available for this platform (" + OS.calculate() + "; " + Arch.calculate() + ")";
+               return "Native process memory consumption information not available for this platform (" + OS.calculate() + "; " + Arch.calculate() + ")";
+       }
+
+       @Override
+       public String headerRow() {
+               return "";
+       }
+
+       @Override
+       public String dataRow() {
+               return "";
        }
 
 }