Simplify if statement for single bool judgment GO-R1004
Anti-pattern
Minor
2 occurrences in this check
IfStmt with single bool judgement could be simplified
1967		storesETAGauge.DeleteLabelValues(storeAddress, storeLabel, preparingAction)
1968	}
1969	progress = encodeRemovingProgressKey(storeID)
1970	if exist := c.progressManager.RemoveProgress(progress); exist {1971		storesProgressGauge.DeleteLabelValues(storeAddress, storeLabel, removingAction)
1972		storesSpeedGauge.DeleteLabelValues(storeAddress, storeLabel, removingAction)
1973		storesETAGauge.DeleteLabelValues(storeAddress, storeLabel, removingAction)
IfStmt with single bool judgement could be simplified
1961	storeLabel := strconv.FormatUint(storeID, 10)
1962
1963	progress := encodePreparingProgressKey(storeID)
1964	if exist := c.progressManager.RemoveProgress(progress); exist {1965		storesProgressGauge.DeleteLabelValues(storeAddress, storeLabel, preparingAction)
1966		storesSpeedGauge.DeleteLabelValues(storeAddress, storeLabel, preparingAction)
1967		storesETAGauge.DeleteLabelValues(storeAddress, storeLabel, preparingAction)