Autofixes says flutter

This commit is contained in:
2025-03-16 11:34:24 +01:00
parent 07ba9604fa
commit 3ebf3801c2
2 changed files with 4 additions and 4 deletions

View File

@@ -208,7 +208,7 @@ class ModList {
// Initialize the graph with empty dependency sets for all mods
for (final mod in mods.values) {
graph[mod.id] = Set<String>();
graph[mod.id] = <String>{};
}
// Add hard dependencies to the graph
@@ -246,7 +246,7 @@ class ModList {
// Initialize the graph with empty sets
for (final mod in mods.values) {
graph[mod.id] = Set<String>();
graph[mod.id] = <String>{};
}
// Add soft dependencies (loadAfter)