[+] --open option

This commit is contained in:
Hykilpikonna
2022-11-10 19:29:22 -05:00
parent f2cf4805c5
commit 9f45379c56
6 changed files with 42 additions and 91 deletions
@@ -56,7 +56,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
public class InstructionSet
{
private final ArrayList instructionList;
private final ArrayList<Instruction> instructionList;
private ArrayList opcodeMatchMaps;
@@ -67,14 +67,14 @@ public class InstructionSet
*/
public InstructionSet()
{
instructionList = new ArrayList();
instructionList = new ArrayList<>();
}
/**
* Retrieve the current instruction set.
*/
public ArrayList getInstructionList()
public ArrayList<Instruction> getInstructionList()
{
return instructionList;