Fixup gofmt errors

This commit is contained in:
William Douglas
2022-10-03 11:49:46 -07:00
parent fe0f2b760f
commit e999af5e5b
11 changed files with 26 additions and 20 deletions

View File

@@ -229,9 +229,9 @@ func (page *BasePage) GetConfiguredValue() string {
// GetConfigDefinition is a stub implementation
// the real implementation must check with the model and return:
// + ConfigDefinedByUser: if the configuration was interactively defined by the user
// + ConfigDefinedByConfig: if the configuration was provided by a config file
// + ConfigNotDefined: if none of the above apply
// - ConfigDefinedByUser: if the configuration was interactively defined by the user
// - ConfigDefinedByConfig: if the configuration was provided by a config file
// - ConfigNotDefined: if none of the above apply
func (page *BasePage) GetConfigDefinition() int {
return ConfigNotDefined
}

View File

@@ -94,9 +94,9 @@ func (page *NetworkValidatePage) DeActivate() {}
// GetConfigDefinition is a stub implementation
// the real implementation must check with the model and return:
// + ConfigDefinedByUser: if the configuration was interactively defined by the user
// + ConfigDefinedByConfig: if the configuration was provided by a config file
// + ConfigNotDefined: if none of the above apply
// - ConfigDefinedByUser: if the configuration was interactively defined by the user
// - ConfigDefinedByConfig: if the configuration was provided by a config file
// - ConfigNotDefined: if none of the above apply
func (page *NetworkValidatePage) GetConfigDefinition() int {
return ConfigDefinedByUser
}

View File

@@ -105,9 +105,9 @@ func (page *SaveConfigPage) DeActivate() {}
// GetConfigDefinition is a stub implementation
// the real implementation must check with the model and return:
// + ConfigDefinedByUser: if the configuration was interactively defined by the user
// + ConfigDefinedByConfig: if the configuration was provided by a config file
// + ConfigNotDefined: if none of the above apply
// - ConfigDefinedByUser: if the configuration was interactively defined by the user
// - ConfigDefinedByConfig: if the configuration was provided by a config file
// - ConfigNotDefined: if none of the above apply
func (page *SaveConfigPage) GetConfigDefinition() int {
return ConfigDefinedByUser
}