< prev index next >

src/share/vm/gc/shared/gcTraceTime.hpp

Print this page

        

@@ -38,18 +38,18 @@
   bool _print_cr;
   GCTimer* _timer;
   Ticks _start_counter;
 
  public:
-  GCTraceTimeImpl(const char* title, bool doit, bool print_cr, GCTimer* timer, GCId gc_id);
+  GCTraceTimeImpl(const char* title, bool doit, bool print_cr, GCTimer* timer);
   ~GCTraceTimeImpl();
 };
 
 class GCTraceTime : public StackObj {
   GCTraceTimeImpl _gc_trace_time_impl;
 
  public:
-  GCTraceTime(const char* title, bool doit, bool print_cr, GCTimer* timer, GCId gc_id) :
-    _gc_trace_time_impl(title, doit, print_cr, timer, gc_id) {};
+  GCTraceTime(const char* title, bool doit, bool print_cr, GCTimer* timer) :
+    _gc_trace_time_impl(title, doit, print_cr, timer) {};
 };
 
 #endif // SHARE_VM_GC_SHARED_GCTRACETIME_HPP
< prev index next >