Autofixes says flutter
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user