Minor fix: Remove description object from abstract class
This commit is contained in:
parent
82f5c18129
commit
cfd97a687c
3 changed files with 4 additions and 6 deletions
|
@ -5,9 +5,7 @@ import 'package:libac_dart/argparse/types/String.dart';
|
|||
abstract class Argument<T> {
|
||||
String name;
|
||||
|
||||
String description;
|
||||
|
||||
Argument({required this.name, this.description = ""});
|
||||
Argument({required this.name});
|
||||
|
||||
T getValue() {
|
||||
throw new UnimplementedError("This argument type has no value");
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
class Constants {
|
||||
static const VERSION = "1.4.012225+0357";
|
||||
static const VERSION = "1.4.012225+0413";
|
||||
static const NBT_REVISION = "1.3.012225+0304";
|
||||
static const ARGS_REVISION = "1.4.012225+0357";
|
||||
static const ARGS_REVISION = "1.4.012225+0413";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue