@forge/util

2.0.12.0.1-experimental-7890858
packages/ari/graph/work-item-history/index.js
~packages/ari/graph/work-item-history/index.jsModified
+1−5
Index: package/packages/ari/graph/work-item-history/index.js
===================================================================
--- package/packages/ari/graph/work-item-history/index.js
+++ package/packages/ari/graph/work-item-history/index.js
@@ -284,27 +284,23 @@
 var graphWorkItemHistoryAriStaticOpts = {
   qualifier: "ari",
   platformQualifier: "cloud",
   cloudId: new RegExp("^$"),
-  // eslint-disable-line no-useless-escape
   resourceOwner: GraphWorkItemHistoryAriResourceOwner,
   resourceType: GraphWorkItemHistoryAriResourceType,
   resourceIdSlug: "activation/{activationId}/{workItemId}/{updateSequenceNumber}",
   resourceIdSegmentFormats: {
     activationId: /[a-zA-Z0-9\-]+/,
     // eslint-disable-line no-useless-escape
     workItemId: /[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}/,
-    // eslint-disable-line no-useless-escape
     updateSequenceNumber: /\d+/
-    // eslint-disable-line no-useless-escape
   }
 };
 
 // src/graph/work-item-history/index.ts
 var GraphWorkItemHistoryAri = class _GraphWorkItemHistoryAri extends RegisteredAri {
   constructor(opts) {
-    super(opts);
-    this._activationId = opts.resourceIdSegmentValues.activationId, this._workItemId = opts.resourceIdSegmentValues.workItemId, this._updateSequenceNumber = opts.resourceIdSegmentValues.updateSequenceNumber;
+    super(opts), this._activationId = opts.resourceIdSegmentValues.activationId, this._workItemId = opts.resourceIdSegmentValues.workItemId, this._updateSequenceNumber = opts.resourceIdSegmentValues.updateSequenceNumber;
   }
   get activationId() {
     return this._activationId;
   }