Skip to content

Commit 21ba19a

Browse files
(AzureCXP) fixes MicrosoftDocs/azure-docs#107197
Changes made in line no 317 From BlobServiceClient client = new BlobServiceClientBuilder() To BlobServiceClient blobServiceClient = new BlobServiceClientBuilder()
1 parent 13aa1dd commit 21ba19a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/storage/blobs/storage-quickstart-blobs-java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ Add this code to the end of the `Main` method:
314314
String connectStr = System.getenv("AZURE_STORAGE_CONNECTION_STRING");
315315

316316
// Create a BlobServiceClient object using a connection string
317-
BlobServiceClient client = new BlobServiceClientBuilder()
317+
BlobServiceClient blobServiceClient = new BlobServiceClientBuilder()
318318
.connectionString(connectStr)
319319
.buildClient();
320320

@@ -459,4 +459,4 @@ To see Blob storage sample apps, continue to:
459459
> [Azure Blob Storage library for Java samples](https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/storage/azure-storage-blob/src/samples/java/com/azure/storage/blob)
460460
461461
- To learn more, see the [Azure Blob Storage client libraries for Java](/java/api/overview/azure/storage-blob-readme).
462-
- For tutorials, samples, quickstarts, and other documentation, visit [Azure for Java developers](/azure/developer/java/sdk/overview).
462+
- For tutorials, samples, quickstarts, and other documentation, visit [Azure for Java developers](/azure/developer/java/sdk/overview).

0 commit comments

Comments
 (0)