mol_plot_all 1.2.241 → 1.2.242

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.
package/web.js CHANGED
@@ -1258,26 +1258,7 @@ var $;
1258
1258
  }
1259
1259
  }
1260
1260
  resync(...args) {
1261
- let res;
1262
- try {
1263
- res = this.recall(...args);
1264
- }
1265
- catch (error) {
1266
- if (error instanceof Promise)
1267
- $mol_fail_hidden(error);
1268
- res = error;
1269
- }
1270
- try {
1271
- this.once();
1272
- }
1273
- catch (error) {
1274
- if (error instanceof Promise)
1275
- $mol_fail_hidden(error);
1276
- }
1277
- return this.put(res);
1278
- }
1279
- recall(...args) {
1280
- return this.task.call(this.host, ...args);
1261
+ return this.put(this.task.call(this.host, ...args));
1281
1262
  }
1282
1263
  once() {
1283
1264
  return this.sync();
@@ -1326,9 +1307,6 @@ var $;
1326
1307
  __decorate([
1327
1308
  $mol_wire_method
1328
1309
  ], $mol_wire_atom.prototype, "resync", null);
1329
- __decorate([
1330
- $mol_wire_method
1331
- ], $mol_wire_atom.prototype, "recall", null);
1332
1310
  __decorate([
1333
1311
  $mol_wire_method
1334
1312
  ], $mol_wire_atom.prototype, "once", null);