bruce-models 1.1.1 → 1.1.2

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.
@@ -1733,8 +1733,8 @@ function parseLegacyPath(path) {
1733
1733
  return [];
1734
1734
  }
1735
1735
  if (path.startsWith("${") && path.endsWith("}")) {
1736
- path.replace("${", "");
1737
- path.replace("}", "");
1736
+ path = path.replace("${", "");
1737
+ path = path.replace("}", "");
1738
1738
  return PathUtils.ParseLegacy(path);
1739
1739
  }
1740
1740
  return PathUtils.Parse(path);