Minor fix: Remove description object from abstract class

This commit is contained in:
zontreck 2025-01-22 04:14:25 -07:00
parent 82f5c18129
commit cfd97a687c
3 changed files with 4 additions and 6 deletions

View file

@ -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");

View file

@ -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";
}