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> { abstract class Argument<T> {
String name; String name;
String description; Argument({required this.name});
Argument({required this.name, this.description = ""});
T getValue() { T getValue() {
throw new UnimplementedError("This argument type has no value"); throw new UnimplementedError("This argument type has no value");

View file

@ -1,5 +1,5 @@
class Constants { 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 NBT_REVISION = "1.3.012225+0304";
static const ARGS_REVISION = "1.4.012225+0357"; static const ARGS_REVISION = "1.4.012225+0413";
} }

View file

@ -1,6 +1,6 @@
name: libac_dart name: libac_dart
description: "Aria's Creations code library" description: "Aria's Creations code library"
version: 1.4.012225+0357 version: 1.4.012225+0413
homepage: "https://zontreck.com" homepage: "https://zontreck.com"
environment: environment: