diff options
Diffstat (limited to 'src/runtime_support.cc')
-rw-r--r-- | src/runtime_support.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime_support.cc b/src/runtime_support.cc index 6ea05b48e9..d9b369bac3 100644 --- a/src/runtime_support.cc +++ b/src/runtime_support.cc @@ -211,7 +211,7 @@ mirror::Field* FindFieldFromCode(uint32_t field_idx, const mirror::AbstractMetho if (fields_class->IsInitialized()) { return resolved_field; } else if (Runtime::Current()->GetClassLinker()->EnsureInitialized(fields_class, true, true)) { - // otherwise let's ensure the class is initialized before resolving the field + // Otherwise let's ensure the class is initialized before resolving the field. return resolved_field; } else { DCHECK(self->IsExceptionPending()); // Throw exception and unwind |