@forge/util

2.0.12.0.1-experimental-7890858
packages/ari/google/account/index.js
~packages/ari/google/account/index.jsModified
+1−4
Index: package/packages/ari/google/account/index.js
===================================================================
--- package/packages/ari/google/account/index.js
+++ package/packages/ari/google/account/index.js
@@ -284,23 +284,20 @@
 var googleAccountAriStaticOpts = {
   qualifier: "ari",
   platformQualifier: "third-party",
   cloudId: new RegExp("^$"),
-  // eslint-disable-line no-useless-escape
   resourceOwner: GoogleAccountAriResourceOwner,
   resourceType: GoogleAccountAriResourceType,
   resourceIdSlug: "{accountId}",
   resourceIdSegmentFormats: {
     accountId: /[a-zA-Z0-9\-_.~@;{}=]{0,255}/
-    // eslint-disable-line no-useless-escape
   }
 };
 
 // src/google/account/index.ts
 var GoogleAccountAri = class _GoogleAccountAri extends RegisteredAri {
   constructor(opts) {
-    super(opts);
-    this._accountId = opts.resourceIdSegmentValues.accountId;
+    super(opts), this._accountId = opts.resourceIdSegmentValues.accountId;
   }
   get accountId() {
     return this._accountId;
   }