Skip to content

Commit fcb9eea

Browse files
committed
explict nonNull-ability
1 parent ae53946 commit fcb9eea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/microsoft/graph/authentication/BaseAuthenticationProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public abstract class BaseAuthenticationProvider implements IAuthenticationProvi
1818
* Allow the user to add custom hosts by passing in Array
1919
* @param customHosts custom hosts passed in by user.
2020
*/
21-
public void setCustomHosts(String[] customHosts) {
21+
public void setCustomHosts(@Nonnull String[] customHosts) {
2222
if(this.customHosts == null){
2323
this.customHosts = new HashSet<String>();
2424
}

0 commit comments

Comments
 (0)