Skip to content

Commit 4cb7c3b

Browse files
committed
- code linting
Signed-off-by: Vincent Biret <[email protected]>
1 parent 3482361 commit 4cb7c3b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/microsoft/graph/core/models/IUploadSession.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public interface IUploadSession extends Parsable, AdditionalDataHolder {
2323
* Sets the Upload Url
2424
* @param url the upload Url for the session
2525
*/
26-
void setUploadUrl(@Nonnull String url);
26+
void setUploadUrl(@Nonnull final String url);
2727
/**
2828
* Gets the Next Expected Ranges.
2929
* A collection of byte ranges that the server is missing for the file. These ranges are zero indexed and of the format 'start-end' (e.g. '0-26' to indicate the first 27 bytes of the file). When uploading files as Outlook attachments, instead of a collection of ranges, this property always indicates a single value '{start}', the location in the file where the next upload should begin.
@@ -35,7 +35,7 @@ public interface IUploadSession extends Parsable, AdditionalDataHolder {
3535
* Sets the ranges that are yet to be uploaded.
3636
* @param nextExpectedRanges the byte ranges yet to be uploaded.
3737
*/
38-
void setNextExpectedRanges(@Nonnull List<String> nextExpectedRanges);
38+
void setNextExpectedRanges(@Nonnull final List<String> nextExpectedRanges);
3939
/**
4040
* Expiration date of the upload session
4141
* @return the expiration date.
@@ -46,5 +46,5 @@ public interface IUploadSession extends Parsable, AdditionalDataHolder {
4646
* Set the expiration date of the UploadSession
4747
* @param dateTime the expiration date of the UploadSession.
4848
*/
49-
void setExpirationDateTime(@Nonnull OffsetDateTime dateTime);
49+
void setExpirationDateTime(@Nonnull final OffsetDateTime dateTime);
5050
}

0 commit comments

Comments
 (0)