@magic-xpa/utils 4.801.0-dev481.287 → 4.801.0-dev481.293

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.
@@ -1162,7 +1162,6 @@ class StrUtil {
1162
1162
  static indexOf(str, strings, offset, SARindex) {
1163
1163
  let minOffset = -1;
1164
1164
  for (let i = 0; i < strings.length; i = i + 1) {
1165
- let flag = strings[i] === null;
1166
1165
  if (!(strings[i] === null)) {
1167
1166
  let resultOffset = str.indexOf(strings[i], offset);
1168
1167
  if (resultOffset === -1) {
@@ -1453,7 +1452,7 @@ class Misc {
1453
1452
  intArray = new Array(vals.length);
1454
1453
  let outInt = new RefParam(0);
1455
1454
  for (let iCtr = 0; iCtr < vals.length; iCtr = iCtr + 1) {
1456
- let _r = NNumber.TryParse(vals[iCtr], outInt);
1455
+ NNumber.TryParse(vals[iCtr], outInt);
1457
1456
  intArray[iCtr] = outInt.value;
1458
1457
  }
1459
1458
  }