Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Fix ci analyze exception and get analyze record
  • Loading branch information
v-hongli1 committed Dec 26, 2024
commit fcd781d5bdcee86d5a867cd00dc852dd34c92783
1 change: 0 additions & 1 deletion sdk/resourcemanager/azure-resourcemanager-redis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@

--add-opens com.azure.core/com.azure.core.implementation.util=ALL-UNNAMED
</javaModulesSurefireArgLine>
<doclintMissingInclusion>-</doclintMissingInclusion>
</properties>

<developers>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,11 @@ private RedisManager(HttpPipeline httpPipeline, AzureProfile profile) {
.buildClient());
}

/** @return the Redis Cache management API entry point */
/**
* Gets the Redis Cache management API entry point.
*
* @return the Redis Cache management API entry point
*/
public RedisCaches redisCaches() {
if (redisCaches == null) {
redisCaches = new RedisCachesImpl(this);
Expand Down
Loading