We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37afc3b commit 425a89dCopy full SHA for 425a89d
1 file changed
src/main/java/com/microsoft/graph/authentication/BaseAuthenticationProvider.java
@@ -32,8 +32,8 @@ public void setCustomHosts(@Nonnull String[] customHosts) {
32
* @return the custom hosts set by user.
33
*/
34
@Nullable
35
- public HashSet<String> getCustomHosts(){
36
- return (HashSet<String>) this.customHosts.clone();
+ public String[] getCustomHosts(){
+ return (String[]) this.customHosts.toArray();
37
}
38
/**
39
* Determines whether a request should be authenticated or not based on it's url.
0 commit comments