@forge/util

2.0.12.0.1-experimental-7890858
packages/ari/bitbucket/project/index.js
~packages/ari/bitbucket/project/index.jsModified
+1−4
Index: package/packages/ari/bitbucket/project/index.js
===================================================================
--- package/packages/ari/bitbucket/project/index.js
+++ package/packages/ari/bitbucket/project/index.js
@@ -284,23 +284,20 @@
 var bitbucketProjectAriStaticOpts = {
   qualifier: "ari",
   platformQualifier: "cloud",
   cloudId: new RegExp("^$"),
-  // eslint-disable-line no-useless-escape
   resourceOwner: BitbucketProjectAriResourceOwner,
   resourceType: BitbucketProjectAriResourceType,
   resourceIdSlug: "{projectId}",
   resourceIdSegmentFormats: {
     projectId: /[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
   }
 };
 
 // src/bitbucket/project/index.ts
 var BitbucketProjectAri = class _BitbucketProjectAri extends RegisteredAri {
   constructor(opts) {
-    super(opts);
-    this._projectId = opts.resourceIdSegmentValues.projectId;
+    super(opts), this._projectId = opts.resourceIdSegmentValues.projectId;
   }
   get projectId() {
     return this._projectId;
   }