mirror of
https://github.com/revanced/smali.git
synced 2025-05-23 18:16:23 +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:
parent
3f81d20782
commit
89c6442752
@ -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, " ");
|
||||
|
Loading…
x
Reference in New Issue
Block a user