Skip to content

Commit 4024d32

Browse files
committed
Remove unused id() and uuid() methods on Container
We might reintroduce these later, but they are safe to remove for now.
1 parent 061751a commit 4024d32

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

src/container.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -131,16 +131,6 @@ impl Container {
131131
exec_command(&mut delete_cmd).await?;
132132
Ok(())
133133
}
134-
135-
/// Returns the ID of the container.
136-
pub fn id(&self) -> &str {
137-
&self.id
138-
}
139-
140-
/// Returns the UUIDv4 assigned to the container.
141-
pub fn uuid(&self) -> Uuid {
142-
self.uuid
143-
}
144134
}
145135

146136
impl Drop for Container {

0 commit comments

Comments
 (0)