Skip to content

Commit ca7cb9e

Browse files
committed
missing space
1 parent ef82a90 commit ca7cb9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

speech/grpc/src/main/java/com/google/cloud/speech/grpc/demos/AudioRequestFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public static AudioRequest createRequest(URI uri)
5454
} else if (uri.getScheme().equals(GS)) {
5555
Storage storage = StorageOptions.defaultInstance().service();
5656
String path = uri.getPath();
57-
BlobId blobId = BlobId.of(uri.getHost(), path.substring(1,path.length()));
57+
BlobId blobId = BlobId.of(uri.getHost(), path.substring(1, path.length()));
5858
Blob blob = storage.get(blobId);
5959
return audioFromBytes(blob.content());
6060
}

0 commit comments

Comments
 (0)