diff options
author | 2011-12-13 17:24:52 -0800 | |
---|---|---|
committer | 2011-12-13 17:24:52 -0800 | |
commit | b87f73ea7524f6eb9da6da1af931a3d3fbb833ff (patch) | |
tree | 9158c8b7e6f56f133d19f0745b089143d7c1b82f /src/object.cc | |
parent | 573db4a2077380d81fa74ee2309162530db87a98 (diff) | |
parent | 5d78d39273f4a2576093a35cc6a085f5c8604a5e (diff) |
Merge "Improve consistency of units in logging." into dalvik-dev
Diffstat (limited to 'src/object.cc')
-rw-r--r-- | src/object.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/object.cc b/src/object.cc index c08e1228c0..9e843279a4 100644 --- a/src/object.cc +++ b/src/object.cc @@ -1175,8 +1175,7 @@ bool String::Equals(const String* that) const { } } -bool String::Equals(const uint16_t* that_chars, int32_t that_offset, - int32_t that_length) const { +bool String::Equals(const uint16_t* that_chars, int32_t that_offset, int32_t that_length) const { if (this->GetLength() != that_length) { return false; } else { |