diff options
Diffstat (limited to 'runtime/reflection_test.cc')
-rw-r--r-- | runtime/reflection_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/reflection_test.cc b/runtime/reflection_test.cc index 424ee0681a..00e298ead3 100644 --- a/runtime/reflection_test.cc +++ b/runtime/reflection_test.cc @@ -33,7 +33,7 @@ namespace art { // TODO: Convert to CommonRuntimeTest. Currently MakeExecutable is used. class ReflectionTest : public CommonCompilerTest { protected: - virtual void SetUp() { + void SetUp() override { CommonCompilerTest::SetUp(); vm_ = Runtime::Current()->GetJavaVM(); @@ -73,7 +73,7 @@ class ReflectionTest : public CommonCompilerTest { } } - virtual void TearDown() { + void TearDown() override { CleanUpJniEnv(); CommonCompilerTest::TearDown(); } |