Skip to content

Commit 8bfcdb1

Browse files
committed
Fix lints
1 parent 68d1c63 commit 8bfcdb1

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

src/integration-tests/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ package = "google-cloud-storage"
4646
path = "../../src/storage"
4747

4848
[dependencies.sm]
49-
package = "google-cloud-secretmanager-v1"
50-
path = "../../src/generated/cloud/secretmanager/v1"
49+
package = "google-cloud-secretmanager-v1"
50+
path = "../../src/generated/cloud/secretmanager/v1"
5151
default-features = false
5252

5353
[dependencies.smo]

src/storage/src/client.rs

+3-7
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@
1414

1515
//! Contains the Storage client and related types.
1616
17-
// TODO(#1813) - remove this once we documentation links work correctly.
18-
#[doc(hidden)]
19-
pub use super::generated::gapic::client::Storage as StorageV2Client;
20-
2117
/// Implements a client for the Cloud Storage API.
2218
///
2319
/// # Example
@@ -94,7 +90,7 @@ impl Storage {
9490
/// # gax::Result::<()>::Ok(()) });
9591
/// ```
9692
pub fn builder() -> ClientBuilder {
97-
gax::client_builder::internal::new_builder(client::Factory)
93+
gax::client_builder::internal::new_builder(client_builder::Factory)
9894
}
9995

10096
/// Permanently deletes an empty bucket.
@@ -286,9 +282,9 @@ impl Storage {
286282
/// # gax::Result::<()>::Ok(()) });
287283
/// ```
288284
pub type ClientBuilder =
289-
gax::client_builder::ClientBuilder<client::Factory, gaxi::options::Credentials>;
285+
gax::client_builder::ClientBuilder<client_builder::Factory, gaxi::options::Credentials>;
290286

291-
pub(crate) mod client {
287+
pub(crate) mod client_builder {
292288
use super::Storage;
293289
pub struct Factory;
294290
impl gax::client_builder::internal::ClientFactory for Factory {

0 commit comments

Comments
 (0)