-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix some accessing categories, see pharo-project/pharo#11027
- Loading branch information
Showing
4 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
repository/Zinc-HTTP.package/ZnClient.class/instance/setBearerAuthentication..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
accessing request | ||
accessing - request | ||
setBearerAuthentication: token | ||
"Set the bearer token for authentication (e.g. OAuth 2.0) for the current request." | ||
|
||
self request setBearerAuthentication: token | ||
self request setBearerAuthentication: token |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
repository/Zinc-Resource-Meta-Core.package/ZnUrl.class/instance/queryAt.add..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
accessing-query | ||
accessing - query | ||
queryAt: key add: value | ||
"Modify the receiver by adding a query variable key=value. | ||
If key already exists, value is added to it." | ||
|
||
query ifNil: [ query := ZnMultiValueDictionary new ]. | ||
query at: key asString add: (value ifNotNil: [ value asString ]) | ||
query at: key asString add: (value ifNotNil: [ value asString ]) |
4 changes: 2 additions & 2 deletions
4
repository/Zinc-Resource-Meta-Core.package/ZnUrl.class/instance/queryAt.put..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
accessing-query | ||
accessing - query | ||
queryAt: key put: value | ||
"Modify the receiver by setting a query variable key=value. | ||
If key is already exists, it is overwritten." | ||
|
||
query ifNil: [ query := ZnMultiValueDictionary new ]. | ||
query at: key asString put: (value ifNotNil: [ value asString ]) | ||
query at: key asString put: (value ifNotNil: [ value asString ]) |