summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
author Hari Limaye <hari.limaye@linaro.org> 2022-07-21 17:39:30 +0100
committer Roland Levillain <rpl@google.com> 2022-08-17 15:20:13 +0000
commit933d012af16eeb97f21a9ab08f96af6b474dce99 (patch)
treef838a3247ab807d9cc55cf2b7fd3c4e33c7b836e /compiler
parent8c3b58afad0c347667991a8849c1b47bf25303ef (diff)
ART: Remove duplicated access modifier in OptimizingCompiler
This change removes the duplicate private access modifier that was added to class OptimizingCompiler in change 5319d3c. The private keyword at line 306 is sufficient, and the duplicate keyword causes confusion when reading the code of the class. Test: test-art-target, test-art-host. Change-Id: I8fe593aea2dc63b993d51803630fbf0d1b552843
Diffstat (limited to 'compiler')
-rw-r--r--compiler/optimizing/optimizing_compiler.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/optimizing/optimizing_compiler.cc b/compiler/optimizing/optimizing_compiler.cc
index b0fa251f55..97e6a7aba0 100644
--- a/compiler/optimizing/optimizing_compiler.cc
+++ b/compiler/optimizing/optimizing_compiler.cc
@@ -359,7 +359,6 @@ class OptimizingCompiler final : public Compiler {
const DexCompilationUnit& dex_compilation_unit,
PassObserver* pass_observer) const;
- private:
// Create a 'CompiledMethod' for an optimized graph.
CompiledMethod* Emit(ArenaAllocator* allocator,
CodeVectorAllocator* code_allocator,