Skip to content

Commit

Permalink
Remove the "pub" statement of some composed types.
Browse files Browse the repository at this point in the history
  • Loading branch information
MathieuDutSik committed Oct 16, 2024
1 parent b48edc7 commit 8b38f3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion linera-views/src/backends/journaling.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ struct JournalHeader {
#[derive(Clone)]
pub struct JournalingKeyValueStore<K> {
/// The inner store.
pub store: K,
store: K,
}

impl<K> DeletePrefixExpander for &JournalingKeyValueStore<K>
Expand Down
2 changes: 1 addition & 1 deletion linera-views/src/backends/lru_caching.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ impl<'a> LruPrefixCache {
#[derive(Clone)]
pub struct LruCachingStore<K> {
/// The inner store that is called by the LRU cache one
pub store: K,
store: K,
lru_read_values: Option<Arc<Mutex<LruPrefixCache>>>,
}

Expand Down

0 comments on commit 8b38f3b

Please sign in to comment.