@forge/cli-shared

6.7.0-next.106.7.0-next.11
out/config/config-file-section-reader.js
out/config/config-file-section-reader.js
−6
Index: package/out/config/config-file-section-reader.js
===================================================================
--- package/out/config/config-file-section-reader.js
+++ package/out/config/config-file-section-reader.js
@@ -21,11 +21,8 @@
         else {
             return 'missing';
         }
     }
-    async readAppId() {
-        return await this.configReader.readAppId();
-    }
 }
 exports.ConfigFileSectionReader = ConfigFileSectionReader;
 class ShapedConfigFileSectionReader {
     configSectionReader;
@@ -38,11 +35,8 @@
     }
     readConfigSection() {
         return this.configSectionReader.readConfigSection(this.key, this.schema);
     }
-    readAppId() {
-        return this.configSectionReader.readAppId();
-    }
 }
 const configFileReaderForSection = (key, schema, configReader) => {
     return new ShapedConfigFileSectionReader(new ConfigFileSectionReader(configReader), key, schema);
 };