Skip to content
Merged
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

## [2.0.18] - 2023-04-06

### Changed

- Fix `getRequestUrl()` and `getClient()` wrongfully being declared `@Nullable` in `BaseRequestBuilder`.

## [2.0.17] - 2023-03-20

### Changed
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ mavenGroupId = com.microsoft.graph
mavenArtifactId = microsoft-graph-core
mavenMajorVersion = 2
mavenMinorVersion = 0
mavenPatchVersion = 17
mavenPatchVersion = 18
mavenArtifactSuffix =

#These values are used to run functional tests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public BaseRequestBuilder(
*
* @return the client
*/
@Nullable
@Nonnull
@SuppressFBWarnings
public IBaseClient<?> getClient() {
return client;
Expand All @@ -90,7 +90,7 @@ public IBaseClient<?> getClient() {
*
* @return the request URL
*/
@Nullable
@Nonnull
public String getRequestUrl() {
return requestUrl;
}
Expand Down