summaryrefslogtreecommitdiff
path: root/src/object.cc
diff options
context:
space:
mode:
author Elliott Hughes <enh@google.com> 2011-12-13 17:24:52 -0800
committer Android (Google) Code Review <android-gerrit@google.com> 2011-12-13 17:24:52 -0800
commitb87f73ea7524f6eb9da6da1af931a3d3fbb833ff (patch)
tree9158c8b7e6f56f133d19f0745b089143d7c1b82f /src/object.cc
parent573db4a2077380d81fa74ee2309162530db87a98 (diff)
parent5d78d39273f4a2576093a35cc6a085f5c8604a5e (diff)
Merge "Improve consistency of units in logging." into dalvik-dev
Diffstat (limited to 'src/object.cc')
-rw-r--r--src/object.cc3
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 {