Skip to content

Commit

Permalink
remove obsolete comment
Browse files Browse the repository at this point in the history
  • Loading branch information
c-thiel committed Jan 23, 2025
1 parent 729b15f commit 2e8391f
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions crates/iceberg/src/spec/view_metadata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,26 +193,6 @@ impl ViewMetadata {
}
}

// /// Manipulating view metadata.
// pub struct ViewMetadataBuilder(ViewMetadata);
// ToDo: Remove
// impl ViewMetadataBuilder {
// /// Creates a new view metadata builder from the given view metadata.
// pub fn new(origin: ViewMetadata) -> Self {
// Self(origin)
// }
// /// Changes uuid of view metadata.
// pub fn assign_uuid(mut self, uuid: Uuid) -> Result<Self> {
// self.0.view_uuid = uuid;
// Ok(self)
// }

// /// Returns the new view metadata after changes.
// pub fn build(self) -> Result<ViewMetadata> {
// Ok(self.0)
// }
// }

#[derive(Debug, Serialize, Deserialize, PartialEq, Eq, Clone)]
#[serde(rename_all = "kebab-case")]
/// A log of when each snapshot was made.
Expand Down

0 comments on commit 2e8391f

Please sign in to comment.