Skip to content

Commit

Permalink
Update to fix static analysis issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Mayyhem committed Jan 22, 2025
1 parent 0d2d217 commit 58db0e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/go/analysis/post_operation.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func NewPostRelationshipOperation(ctx context.Context, db graph.Database, operat
)

for nextJob := range inC {
if nextJob.RelProperties != nil && len(nextJob.RelProperties) > 0 {
if len(nextJob.RelProperties) > 0 {
tempRelProp := relProp.Clone()
for key, val := range nextJob.RelProperties {
tempRelProp.Set(key, val)
Expand Down

0 comments on commit 58db0e4

Please sign in to comment.