Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unnecessary whitespace #332

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: Tests
on:
push:
branches:
- master # although master is push protected we still keep it
- master # although master is push protected we still keep it
- development
pull_request: # runs on all PR
branches-ignore:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Please carefully consult the documentation while updating.
* fix: Changed 'hasOwnProperty' call in Response
* docs: Ensure accessTokenExpiresAt is required
* docs: Add missing notice of breaking change for accessExpireLifetime to migration guide
* docs: Correct tokens time scale for 2.x to 3.x migration guide
* docs: Correct tokens time scale for 2.x to 3.x migration guide
* readme: Update Slack badge and link
* readme: Fix link to RFC6750 standard

Expand Down
2 changes: 1 addition & 1 deletion lib/handlers/authorize-handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const responseTypes = {
* Constructor.
*/

class AuthorizeHandler {
class AuthorizeHandler {
constructor (options) {
options = options || {};

Expand Down
2 changes: 1 addition & 1 deletion lib/token-types/bearer-token-type.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const InvalidArgumentError = require('../errors/invalid-argument-error');
* Constructor.
*/

class BearerTokenType {
class BearerTokenType {
constructor(accessToken, accessTokenLifetime, refreshToken, scope, customAttributes) {
if (!accessToken) {
throw new InvalidArgumentError('Missing parameter: `accessToken`');
Expand Down
Loading