BuilderPrologueEnd.java revision 688611814ddff6babff935e81dcf51aff903563a
1package org.jf.dexlib2.builder.debug;
2
3import org.jf.dexlib2.DebugItemType;
4import org.jf.dexlib2.builder.BuilderDebugItem;
5import org.jf.dexlib2.builder.MethodLocation;
6import org.jf.dexlib2.iface.debug.PrologueEnd;
7
8import javax.annotation.Nonnull;
9
10public class BuilderPrologueEnd extends BuilderDebugItem implements PrologueEnd {
11    public BuilderPrologueEnd(@Nonnull MethodLocation location) {
12        super(location);
13    }
14
15    @Override public int getDebugItemType() { return DebugItemType.PROLOGUE_END; }
16}
17