diff --git a/.github/actions/determine-complexity/action.yml b/.github/actions/determine-complexity/action.yml index aca61fb28f..c8f34b95d3 100644 --- a/.github/actions/determine-complexity/action.yml +++ b/.github/actions/determine-complexity/action.yml @@ -23,9 +23,6 @@ runs: lineChangedLimit: ${{ inputs.lines-changed-limit }} with: script: | - console.log('Determine Complexity'); - console.log('Files changed limit: ' + process.env.fileChangedLimit); - console.log('Lines changed limit: ' + process.env.lineChangedLimit); const determineComplexity = require('./.github/actions/determine-complexity/determine-pr-complexity.js'); determineComplexity({ diff --git a/lib/core/src/lib/auth/oidc/auth.service.ts b/lib/core/src/lib/auth/oidc/auth.service.ts index a6d3efe00c..1007d05192 100644 --- a/lib/core/src/lib/auth/oidc/auth.service.ts +++ b/lib/core/src/lib/auth/oidc/auth.service.ts @@ -20,7 +20,6 @@ import { Observable } from 'rxjs'; /** * Provide authentication/authorization through OAuth2/OIDC protocol. - * simulate a change */ export abstract class AuthService { abstract onLogin: Observable;