Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -91,16 +91,13 @@ public UserAgentPolicy(String applicationId, String sdkName, String sdkVersion,
* <p>If the passed configuration contains true for AZURE_TELEMETRY_DISABLED the platform information won't be
* included in the user agent.</p>
*
* @deprecated This method has been deprecated in favor of {@link
* #UserAgentPolicy(String, String, String, Configuration)}.
* @param sdkName Name of the client library.
* @param sdkVersion Version of the client library.
* @param version {@link ServiceVersion} of the service to be used when making requests.
* @param configuration Configuration store that will be checked for {@link
* Configuration#PROPERTY_AZURE_TELEMETRY_DISABLED}. If {@code null} is passed the {@link
* Configuration#getGlobalConfiguration() global configuration} will be checked.
*/
@Deprecated
public UserAgentPolicy(String sdkName, String sdkVersion, Configuration configuration, ServiceVersion version) {
this.userAgent = buildUserAgent(null, sdkName, sdkVersion, configuration);
}
Expand Down