mirror of
https://github.com/revanced/smali.git
synced 2025-06-13 12:37:37 +02:00
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:
@ -95,7 +95,7 @@ public abstract class Item<T extends Item> implements Comparable<T> {
|
|||||||
|
|
||||||
if (out.getCursor() != offset) {
|
if (out.getCursor() != offset) {
|
||||||
throw new RuntimeException("Item was placed at offset 0x" + Integer.toHexString(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()) {
|
if (out.annotates()) {
|
||||||
|
Reference in New Issue
Block a user