01: package net.sf.jdec.jvminstructions.commandholders; 02: 03: import net.sf.jdec.jvminstructions.commands.NopCommand; 04: 05: public class Nop extends AbstractInstructionCommandHolder { 06: 07: protected void registerCommand() { 08: setCommand(new NopCommand()); 09: } 10: }