1 分组去重
This commit is contained in:
@ -104,6 +104,11 @@ func availableSymbols(symbols, symbolType string, e *LineSymbolGroup) []string {
|
||||
continue
|
||||
}
|
||||
|
||||
//重复跳过
|
||||
if utility.ContainsStr(newSymbols, symbol) {
|
||||
continue
|
||||
}
|
||||
|
||||
newSymbols = append(newSymbols, symbol)
|
||||
}
|
||||
return newSymbols
|
||||
|
||||
Reference in New Issue
Block a user