(set map[string]bool)
| 235 | } |
| 236 | |
| 237 | func sortedKeys(set map[string]bool) []string { |
| 238 | keys := make([]string, 0, len(set)) |
| 239 | for key := range set { |
| 240 | keys = append(keys, key) |
| 241 | } |
| 242 | sort.Strings(keys) |
| 243 | return keys |
| 244 | } |
| 245 | |
| 246 | // GetDeprecatedProperties returns the list of any deprecated properties that |
| 247 | // are used in the compose files. |
no outgoing calls
no test coverage detected
searching dependent graphs…