mirror of
https://github.com/revanced/smali.git
synced 2025-06-12 12:17:37 +02:00
and yet more assertion tweakage
git-svn-id: https://smali.googlecode.com/svn/trunk@388 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
@ -107,7 +107,7 @@ public abstract class Section<T extends Item> {
|
||||
*/
|
||||
protected void writeTo(AnnotatedOutput out) {
|
||||
for (Item item: items) {
|
||||
Assert.assertTrue("This section contains a null item", item != null);
|
||||
assert item!=null;
|
||||
out.alignTo(ItemType.ItemAlignment);
|
||||
item.writeTo(out);
|
||||
out.annotate(0, " ");
|
||||
|
Reference in New Issue
Block a user