Skip to content

Commit 1c07f45

Browse files
authored
fix: removed redundant import (#5004)
* removed redundant import * reversed auto changes
1 parent be3aa05 commit 1c07f45

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

pkg/variables/ScopedVariableService.go

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,11 @@ type ScopedVariableService interface {
3232
}
3333

3434
type ScopedVariableServiceImpl struct {
35-
logger *zap.SugaredLogger
36-
scopedVariableRepository repository2.ScopedVariableRepository
37-
qualifierMappingService resourceQualifiers.QualifierMappingService
38-
devtronResourceSearchableKeyService devtronResource.DevtronResourceSearchableKeyService
39-
VariableNameConfig *VariableConfig
40-
VariableCache *cache.VariableCacheObj
35+
logger *zap.SugaredLogger
36+
scopedVariableRepository repository2.ScopedVariableRepository
37+
qualifierMappingService resourceQualifiers.QualifierMappingService
38+
VariableNameConfig *VariableConfig
39+
VariableCache *cache.VariableCacheObj
4140
}
4241

4342
func NewScopedVariableServiceImpl(logger *zap.SugaredLogger, scopedVariableRepository repository2.ScopedVariableRepository, appRepository app.AppRepository, environmentRepository repository.EnvironmentRepository, devtronResourceSearchableKeyService devtronResource.DevtronResourceSearchableKeyService, clusterRepository repository.ClusterRepository,

0 commit comments

Comments
 (0)