Skip to content

Commit 8bedecd

Browse files
author
Kate Osborn
committed
Fix 100 char lines
1 parent a9989c9 commit 8bedecd

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

internal/state/change_processor.go

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,7 @@ func (c *ChangeProcessorImpl) CaptureUpsertChange(obj client.Object) {
104104
c.changed = c.changed || c.store.changed || c.cfg.RelationshipCapturer.Exists(obj, client.ObjectKeyFromObject(obj))
105105
}
106106

107-
func (c *ChangeProcessorImpl) CaptureDeleteChange(
108-
resourceType client.Object,
109-
nsname types.NamespacedName,
110-
) {
107+
func (c *ChangeProcessorImpl) CaptureDeleteChange(resourceType client.Object, nsname types.NamespacedName) {
111108
c.lock.Lock()
112109
defer c.lock.Unlock()
113110

@@ -137,9 +134,7 @@ func (c *ChangeProcessorImpl) CaptureDeleteChange(
137134
c.cfg.RelationshipCapturer.Remove(resourceType, nsname)
138135
}
139136

140-
func (c *ChangeProcessorImpl) Process(
141-
ctx context.Context,
142-
) (changed bool, conf Configuration, statuses Statuses) {
137+
func (c *ChangeProcessorImpl) Process(ctx context.Context) (changed bool, conf Configuration, statuses Statuses) {
143138
c.lock.Lock()
144139
defer c.lock.Unlock()
145140

0 commit comments

Comments
 (0)