File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed
src/main/java/com/microsoft/graph/http Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
1010### Added
1111
12+ ## [ 2.0.18] - 2023-04-06
13+
14+ ### Changed
15+
16+ - Fix ` getRequestUrl() ` and ` getClient() ` wrongfully being declared ` @Nullable ` in ` BaseRequestBuilder ` .
17+
1218## [ 2.0.17] - 2023-03-20
1319
1420### Changed
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ mavenGroupId = com.microsoft.graph
2525mavenArtifactId = microsoft-graph-core
2626mavenMajorVersion = 2
2727mavenMinorVersion = 0
28- mavenPatchVersion = 17
28+ mavenPatchVersion = 18
2929mavenArtifactSuffix =
3030
3131# These values are used to run functional tests
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ public BaseRequestBuilder(
7979 *
8080 * @return the client
8181 */
82- @ Nullable
82+ @ Nonnull
8383 @ SuppressFBWarnings
8484 public IBaseClient <?> getClient () {
8585 return client ;
@@ -90,7 +90,7 @@ public IBaseClient<?> getClient() {
9090 *
9191 * @return the request URL
9292 */
93- @ Nullable
93+ @ Nonnull
9494 public String getRequestUrl () {
9595 return requestUrl ;
9696 }
You can’t perform that action at this time.
0 commit comments