summaryrefslogtreecommitdiff
path: root/runtime/mirror/executable.cc
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/mirror/executable.cc')
-rw-r--r--runtime/mirror/executable.cc7
1 files changed, 2 insertions, 5 deletions
diff --git a/runtime/mirror/executable.cc b/runtime/mirror/executable.cc
index 24e2047bed..d2a2ec5a7e 100644
--- a/runtime/mirror/executable.cc
+++ b/runtime/mirror/executable.cc
@@ -14,9 +14,10 @@
* limitations under the License.
*/
-#include "executable.h"
+#include "executable-inl.h"
#include "art_method-inl.h"
+#include "object-inl.h"
namespace art {
namespace mirror {
@@ -38,9 +39,5 @@ template bool Executable::CreateFromArtMethod<PointerSize::k32, true>(ArtMethod*
template bool Executable::CreateFromArtMethod<PointerSize::k64, false>(ArtMethod* method);
template bool Executable::CreateFromArtMethod<PointerSize::k64, true>(ArtMethod* method);
-mirror::Class* Executable::GetDeclaringClass() {
- return GetFieldObject<mirror::Class>(DeclaringClassOffset());
-}
-
} // namespace mirror
} // namespace art