diff options
| author | Davor Bertovic <davor@losinj.com> | 2014-03-30 06:01:36 -0400 |
|---|---|---|
| committer | Davor Bertovic <davor@losinj.com> | 2014-03-30 06:01:36 -0400 |
| commit | 7f546ce9c78a778a24a6c3133f732fd83134a3dd (patch) | |
| tree | 0f58c63e3e27475fa470c3f9c043711c2dbd5145 | |
| parent | a50c1024213a5c5eaad414b6542bae7bab1d3549 (diff) | |
Revert "Change exception message for ArrayStoreException."
This reverts commit a50c1024213a5c5eaad414b6542bae7bab1d3549.
Change-Id: Iae9e41ba8e54409f007c95e3c9bbc9abb645cdee
| -rw-r--r-- | vm/Exception.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/Exception.cpp b/vm/Exception.cpp index 36f2d20c0..ca7614096 100644 --- a/vm/Exception.cpp +++ b/vm/Exception.cpp @@ -1225,7 +1225,7 @@ void dvmThrowArrayStoreExceptionNotArray(ClassObject* actual, const char* label) void dvmThrowArrayStoreExceptionIncompatibleArrays(ClassObject* source, ClassObject* destination) { throwTypeError(gDvm.exArrayStoreException, - "Incompatible types: src=%s, dst=%s", + "%s and %s are incompatible array types", source, destination); } |
