Skip to content

Commit ef6b10e

Browse files
committed
remove type specific session references
1 parent c648040 commit ef6b10e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/api/BundleDeploy/BundleDeployer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ export class BundleDeployer {
167167
}
168168

169169

170-
private async createZosMFSession(): Promise<AbstractSession> {
170+
private async createZosMFSession(): Promise<any> {
171171
// Create a zosMF session
172172
const zosmfProfile = this.params.profiles.get("zosmf");
173173

@@ -177,7 +177,7 @@ export class BundleDeployer {
177177
return ZosmfSession.createBasicZosmfSession(zosmfProfile);
178178
}
179179

180-
private async checkHLQDatasets(session: AbstractSession) {
180+
private async checkHLQDatasets(session: any) {
181181
// Check that the CICS dataset value looks valid and can be viewed
182182
// Access errors will trigger an Exception
183183
const cicspds = this.params.arguments.cicshlq + ".SDFHLOAD";

0 commit comments

Comments
 (0)