File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/main/java/com/microsoft/graph/http Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ public List<Option> getOptions() {
216216 */
217217 public void addQueryOption (@ Nonnull final QueryOption option ) {
218218 Objects .requireNonNull (option , "parameter option cannot be null" );
219- baseRequest .getQueryOptions (). add (option );
219+ baseRequest .addQueryOption (option );
220220 }
221221
222222 /**
@@ -302,7 +302,7 @@ protected void addCountOption(final boolean value) {
302302 */
303303 public void addFunctionOption (@ Nonnull final FunctionOption option ) {
304304 Objects .requireNonNull (option , "parameter option cannot be null" );
305- baseRequest .getFunctionOptions (). add (option );
305+ baseRequest .addFunctionOption (option );
306306 }
307307
308308 /**
Original file line number Diff line number Diff line change @@ -375,7 +375,7 @@ public List<Option> getOptions() {
375375 */
376376 public void addQueryOption (@ Nonnull final QueryOption option ) {
377377 Objects .requireNonNull (option , "parameter option cannot be null" );
378- getQueryOptions () .add (option );
378+ queryOptions .add (option );
379379 }
380380
381381 /**
@@ -385,7 +385,7 @@ public void addQueryOption(@Nonnull final QueryOption option) {
385385 */
386386 public void addFunctionOption (@ Nonnull final FunctionOption option ) {
387387 Objects .requireNonNull (option , "parameter option cannot be null" );
388- getFunctionOptions () .add (option );
388+ functionOptions .add (option );
389389 }
390390
391391 /**
You can’t perform that action at this time.
0 commit comments