Skip to content

Commit 37afc3b

Browse files
committed
explict Null-ability
1 parent 33d16d5 commit 37afc3b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import java.util.Locale;
77

88
import javax.annotation.Nonnull;
9+
import javax.annotation.Nullable;
910

1011
/**
1112
* Provides basic common methods for all authentication providers
@@ -30,6 +31,7 @@ public void setCustomHosts(@Nonnull String[] customHosts) {
3031
* Get the custom hosts set by user.
3132
* @return the custom hosts set by user.
3233
*/
34+
@Nullable
3335
public HashSet<String> getCustomHosts(){
3436
return (HashSet<String>) this.customHosts.clone();
3537
}

0 commit comments

Comments
 (0)