src/hotspot/share/utilities/exceptions.hpp
changeset 54490 bf07e140c49c
parent 53784 31e3aa9c0c71
child 54973 0927d8c7296f
--- a/src/hotspot/share/utilities/exceptions.hpp	Wed Apr 10 13:21:38 2019 +0200
+++ b/src/hotspot/share/utilities/exceptions.hpp	Wed Apr 10 07:04:35 2019 -0700
@@ -237,11 +237,7 @@
 // visible within the scope containing the THROW. Usually this is achieved by declaring the function
 // with a TRAPS argument.
 
-#ifdef THIS_FILE
-#define THREAD_AND_LOCATION                      THREAD, THIS_FILE, __LINE__
-#else
 #define THREAD_AND_LOCATION                      THREAD, __FILE__, __LINE__
-#endif
 
 #define THROW_OOP(e)                                \
   { Exceptions::_throw_oop(THREAD_AND_LOCATION, e);                             return;  }