X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2FTCommand.java;h=49b7e67122c738424254f894037639bc1392b646;hb=a69ed767c9c07cf35cf1c5f7821fc009cfe79cd2;hp=b6a0411c099018cf78d69690c8e5041c7c41a0fc;hpb=d625990deaa2c24624adc9fbd3fcab58891f5aef;p=fanfix.git diff --git a/src/jexer/TCommand.java b/src/jexer/TCommand.java index b6a0411..49b7e67 100644 --- a/src/jexer/TCommand.java +++ b/src/jexer/TCommand.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2017 Kevin Lamonte + * Copyright (C) 2019 Kevin Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -170,11 +170,11 @@ public class TCommand { // ------------------------------------------------------------------------ /** - * Protected constructor. Subclasses can be used to define new commands. + * Public constructor. * * @param type the Type of command, one of EXIT, CASCADE, etc. */ - protected TCommand(final int type) { + public TCommand(final int type) { this.type = type; }