Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ctreffs committed Oct 21, 2024
1 parent e02bf4f commit 699233a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/FirebladeECS/Nexus+Serialization.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ extension Nexus {
}

final func deserialize(from sNexus: SNexus, into nexus: Nexus) throws {
for freeId in sNexus.entities.map { $0.key }.reversed() {
for freeId in sNexus.entities.map(\.key).reversed() {
nexus.entityIdGenerator.markUnused(entityId: freeId)
}

Expand Down

0 comments on commit 699233a

Please sign in to comment.