コード例 #1
0
ファイル: Gen.java プロジェクト: dtzWill/vmkit
 /**
  * Print pre-collection statistics. In this class we prefix the output indicating whether the
  * collection was full heap or not.
  */
 public void printPreStats() {
   if ((Options.verbose.getValue() >= 1) && (gcFullHeap)) Log.write("[Full heap]");
   super.printPreStats();
 }