You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current implementation of the BackData interface uses flow.Identifier and flow.Entity. The primary concern here is the unnecessary dependency on flow.Entity. The goal is to refactor BackData to eliminate this dependency by using generic arguments instead.
Proposed Solution
Refactor the BackData interface to use generic type parameters instead of depending on flow.Identifier and flow.Entity. This change will eliminate the misuse of flow.Entity.
Defenition of done
The BackData interface is refactored to use generic type parameters instead of flow.Identifier and flow.Entity.
All code using BackData is updated to work with the new generic design.
Tests are updated or added to ensure that the new design functions correctly without breaking existing behavior.
Context
The current implementation of the BackData interface uses
flow.Identifier
andflow.Entity
. The primary concern here is the unnecessary dependency onflow.Entity
. The goal is to refactor BackData to eliminate this dependency by using generic arguments instead.Proposed Solution
Refactor the BackData interface to use generic type parameters instead of depending on
flow.Identifier
andflow.Entity
. This change will eliminate the misuse offlow.Entity
.Defenition of done
flow.Identifier
andflow.Entity
.Related issues
#6703
The text was updated successfully, but these errors were encountered: