Avoid copying and strlen(3) in the FindClass path.
Change-Id: I789f3c883596d1852a2c1954ce7a207e6f937117
diff --git a/src/stringpiece.h b/src/stringpiece.h
index 1338ed9..f61219f 100644
--- a/src/stringpiece.h
+++ b/src/stringpiece.h
@@ -205,7 +205,7 @@
size_t operator()(const art::StringPiece& string_piece) const {
size_t string_size = string_piece.size();
const char* string_data = string_piece.data();
- // this is the java.lang.String hashcode for convenience, not interoperability
+ // This is the java.lang.String hashcode for convenience, not interoperability.
size_t hash = 0;
while (string_size--) {
hash = hash * 31 + *string_data++;