Fixed space issue in exception text

git-svn-id: https://smali.googlecode.com/svn/trunk@378 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
JesusFreke@JesusFreke.com
2009-08-10 06:57:26 +00:00
parent 9f6bc080a4
commit 626c1fed54

View File

@ -95,7 +95,7 @@ public abstract class Item<T extends Item> implements Comparable<T> {
if (out.getCursor() != offset) {
throw new RuntimeException("Item was placed at offset 0x" + Integer.toHexString(offset) +
"but is being written to offset 0x" + Integer.toHexString(out.getCursor()));
" but is being written to offset 0x" + Integer.toHexString(out.getCursor()));
}
if (out.annotates()) {