bruce-models 1.9.4 → 1.9.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2077,11 +2077,11 @@ function parseLegacyPath(path) {
2077
2077
  if (path.startsWith("${") && path.endsWith("}")) {
2078
2078
  path = path.replace("${", "");
2079
2079
  path = path.replace("}", "");
2080
- // Split by dots.
2081
- paths.push(PathUtils.ParseLegacy(path));
2082
- // Take string as is.
2083
- paths.push([path]);
2084
2080
  }
2081
+ // Split by dots.
2082
+ paths.push(PathUtils.ParseLegacy(path));
2083
+ // Take string as is.
2084
+ paths.push([path]);
2085
2085
  // Split by backslashes.
2086
2086
  paths.push(PathUtils.Parse(path));
2087
2087
  return paths;