hotspot/src/share/vm/services/diagnosticCommand.hpp
changeset 35061 be6025ebffea
parent 34139 0728fe06ccf8
child 35186 89076d5121c0
--- a/hotspot/src/share/vm/services/diagnosticCommand.hpp	Thu Dec 10 23:02:31 2015 +0000
+++ b/hotspot/src/share/vm/services/diagnosticCommand.hpp	Thu Dec 10 14:57:55 2015 +0100
@@ -549,23 +549,6 @@
 
 };
 
-class RotateGCLogDCmd : public DCmd {
-public:
-  RotateGCLogDCmd(outputStream* output, bool heap) : DCmd(output, heap) {}
-  static const char* name() { return "GC.rotate_log"; }
-  static const char* description() {
-    return "Force the GC log file to be rotated.";
-  }
-  static const char* impact() { return "Low"; }
-  virtual void execute(DCmdSource source, TRAPS);
-  static int num_arguments() { return 0; }
-  static const JavaPermission permission() {
-    JavaPermission p = {"java.lang.management.ManagementPermission",
-                        "control", NULL};
-    return p;
-  }
-};
-
 class CompileQueueDCmd : public DCmd {
 public:
   CompileQueueDCmd(outputStream* output, bool heap) : DCmd(output, heap) {}