(node *etree.Element, rootPath string)
| 176 | } |
| 177 | |
| 178 | func processCurrentPath(node *etree.Element, rootPath string) { |
| 179 | currentPaths := strings.Split(node.Text(), ";") |
| 180 | |
| 181 | currentPaths = GetNewPaths(currentPaths, false, rootPath) |
| 182 | |
| 183 | node.SetText(strings.Join(currentPaths, ";")) |
| 184 | } |
| 185 | |
| 186 | func _(dprojName string) []string { |
| 187 | doc := etree.NewDocument() |
no test coverage detected