@@ -150,9 +150,7 @@ public final class BlobContainerClient {
150150     * Initializes a new BlobClient object by concatenating blobName to the end of ContainerAsyncClient's URL. The new 
151151     * BlobClient uses the same request policy pipeline as the ContainerAsyncClient. 
152152     * 
153-      * @param blobName A {@code String} representing the name of the blob. If the blob name contains special characters, 
154-      *  pass in the url encoded version of the blob name. 
155-      * 
153+      * @param blobName A {@code String} representing the name of the blob. This should not be encoded. 
156154     * <p><strong>Code Samples</strong></p> 
157155     * 
158156     * <!-- src_embed com.azure.storage.blob.BlobContainerClient.getBlobClient#String --> 
@@ -178,8 +176,7 @@ public BlobClient getBlobClient(String blobName) {
178176     * </pre> 
179177     * <!-- end com.azure.storage.blob.BlobContainerClient.getBlobClient#String-String --> 
180178     * 
181-      * @param blobName A {@code String} representing the name of the blob. If the blob name contains special characters, 
182-      * pass in the url encoded version of the blob name. 
179+      * @param blobName A {@code String} representing the name of the blob. This should not be encoded. 
183180     * @param snapshot the snapshot identifier for the blob. 
184181     * @return A new {@link BlobClient} object which references the blob with the specified name in this container. 
185182     */ 
@@ -192,8 +189,7 @@ public BlobClient getBlobClient(String blobName, String snapshot) {
192189     * Initializes a new BlobClient object by concatenating blobName to the end of ContainerAsyncClient's URL. The new 
193190     * BlobClient uses the same request policy pipeline as the ContainerAsyncClient. 
194191     * 
195-      * @param blobName A {@code String} representing the name of the blob. If the blob name contains special characters, 
196-      * pass in the url encoded version of the blob name. 
192+      * @param blobName A {@code String} representing the name of the blob. This should not be encoded. 
197193     * @param versionId the version identifier for the blob, pass {@code null} to interact with the latest blob version. 
198194     * @return A new {@link BlobClient} object which references the blob with the specified name in this container. 
199195     */ 
0 commit comments