Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 52d0181

Browse files
committedJan 15, 2025·
fix clippy
1 parent a6d74d6 commit 52d0181

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎kernel/src/snapshot.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,22 +100,22 @@ impl Snapshot {
100100

101101
/// Table [`Schema`] at this `Snapshot`s version.
102102
pub fn schema(&self) -> &Schema {
103-
&self.table_configuration.schema()
103+
self.table_configuration.schema()
104104
}
105105

106106
/// Table [`Metadata`] at this `Snapshot`s version.
107107
pub fn metadata(&self) -> &Metadata {
108-
&self.table_configuration.metadata()
108+
self.table_configuration.metadata()
109109
}
110110

111111
/// Table [`Protocol`] at this `Snapshot`s version.
112112
pub fn protocol(&self) -> &Protocol {
113-
&self.table_configuration.protocol()
113+
self.table_configuration.protocol()
114114
}
115115

116116
/// Get the [`TableProperties`] for this [`Snapshot`].
117117
pub fn table_properties(&self) -> &TableProperties {
118-
&self.table_configuration.table_properties()
118+
self.table_configuration.table_properties()
119119
}
120120
/// Get the [`TableConfiguration`] for this [`Snapshot`].
121121
pub fn table_configuration(&self) -> &TableConfiguration {

0 commit comments

Comments
 (0)
Please sign in to comment.