src/hotspot/share/compiler/oopMap.hpp
changeset 54807 33fe50b6d707
parent 54780 f8d182aedc92
child 54916 7136c9ac56a7
--- a/src/hotspot/share/compiler/oopMap.hpp	Thu May 09 14:28:30 2019 +0200
+++ b/src/hotspot/share/compiler/oopMap.hpp	Fri May 10 09:05:29 2019 -0400
@@ -133,7 +133,7 @@
   }
 
   void print_on(outputStream* st) const;
-  void print() const { print_on(tty); }
+  void print() const;
 };
 
 
@@ -194,7 +194,7 @@
 
   // Printing
   void print_on(outputStream* st) const;
-  void print() const { print_on(tty); }
+  void print() const;
   bool equals(const OopMap* other) const;
 };
 
@@ -253,7 +253,7 @@
 
   // Printing
   void print_on(outputStream* st) const;
-  void print() const { print_on(tty); }
+  void print() const;
 };
 
 class ImmutableOopMapBuilder;
@@ -279,7 +279,7 @@
 
   // Printing
   void print_on(outputStream* st) const;
-  void print() const { print_on(tty); }
+  void print() const;
 };
 
 class ImmutableOopMapSet;
@@ -330,7 +330,7 @@
   int nr_of_bytes() const { return _size; }
 
   void print_on(outputStream* st) const;
-  void print() const { print_on(tty); }
+  void print() const;
 };
 
 class OopMapStream : public StackObj {