summaryrefslogtreecommitdiffstats
path: root/runtime/indirect_reference_table.cc
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-07-29 14:40:52 -0700
committerElliott Hughes <enh@google.com>2013-07-29 14:40:52 -0700
commit9dcd45c60c691524bd8ef7d6f65075d9ee3e5554 (patch)
treed27237f65c162318aed87da438431607f0a15ba6 /runtime/indirect_reference_table.cc
parent46a1270fad27d81904ed60d0df56761356af500d (diff)
downloadart-9dcd45c60c691524bd8ef7d6f65075d9ee3e5554.zip
art-9dcd45c60c691524bd8ef7d6f65075d9ee3e5554.tar.gz
art-9dcd45c60c691524bd8ef7d6f65075d9ee3e5554.tar.bz2
Fix NewLocalRef to use AddLocalReference.
Bug: 10026664 Change-Id: I06f8f75a92f73b3b58fa767c0d08d1b736f7d5b5
Diffstat (limited to 'runtime/indirect_reference_table.cc')
-rw-r--r--runtime/indirect_reference_table.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/indirect_reference_table.cc b/runtime/indirect_reference_table.cc
index 0616d28..3e75716 100644
--- a/runtime/indirect_reference_table.cc
+++ b/runtime/indirect_reference_table.cc
@@ -237,7 +237,7 @@ bool IndirectReferenceTable::Remove(uint32_t cookie, IndirectRef iref) {
mirror::Object* direct_pointer = reinterpret_cast<mirror::Object*>(iref);
idx = Find(direct_pointer, bottomIndex, topIndex, table_);
if (idx == -1) {
- LOG(WARNING) << "trying to work around app JNI bugs, but didn't find " << iref << " in table!";
+ LOG(WARNING) << "Trying to work around app JNI bugs, but didn't find " << iref << " in table!";
return false;
}
}