< prev index next >

src/hotspot/share/utilities/accessFlags.hpp

Print this page
rev 49011 : 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
Reviewed-by: coleenp, dholmes

@@ -265,16 +265,12 @@
   jshort as_short() const              { return (jshort)_flags; }
   jint   as_int() const                { return _flags; }
 
   inline friend AccessFlags accessFlags_from(jint flags);
 
-  // Printing/debugging
-#if INCLUDE_JVMTI
+  // Printing/debugging/exception messages
   void print_on(outputStream* st) const;
-#else
-  void print_on(outputStream* st) const PRODUCT_RETURN;
-#endif
 };
 
 inline AccessFlags accessFlags_from(jint flags) {
   AccessFlags af;
   af._flags = flags;
< prev index next >