diff --git a/modules/openapi-generator/src/main/resources/typescript/auth/auth.mustache b/modules/openapi-generator/src/main/resources/typescript/auth/auth.mustache index 09d927066a0..d64eb2b2582 100644 --- a/modules/openapi-generator/src/main/resources/typescript/auth/auth.mustache +++ b/modules/openapi-generator/src/main/resources/typescript/auth/auth.mustache @@ -30,21 +30,6 @@ export abstract class SecurityAuthentication { } -/** - * Applies no authentication. - * - */ -export class NoAuthentication extends SecurityAuthentication { - - public constructor() { - super("_no_auth"); - } - - public applySecurityAuthentication(_context: RequestContext) { - - } -} - /** * Applies an api key to the request context. *