Remove static methods that arent overridable

This commit is contained in:
zontreck 2024-07-12 21:27:58 -07:00
parent ad7da43a39
commit a1f0173c92
2 changed files with 1 additions and 11 deletions

View file

@ -8,14 +8,4 @@ abstract class IJsonSerializable {
/// Returns a Json Object
Map<String,dynamic> toJson();
/// Decodes json and returns the instance
static IJsonSerializable fromJson(String js) {
throw UnimplementedError();
}
/// Decodes json object
static IJsonSerializable decode(Map<String,dynamic> js) {
throw UnimplementedError();
}
}

View file

@ -1,6 +1,6 @@
name: libac_dart
description: "Aria's Creations code library"
version: 1.2.071224+2114
version: 1.2.071224+2127
homepage: "https://zontreck.com"