Skip to content

Commit

Permalink
Merge pull request #428 from Rogo-Technologies/expose-dimensions
Browse files Browse the repository at this point in the history
Expose dimensions methods to the public
  • Loading branch information
tafia committed Apr 26, 2024
2 parents 276fb61 + 2b60f6e commit 9c0b057
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/xlsb/cells_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ impl<'a> XlsbCellsReader<'a> {
})
}

pub(crate) fn dimensions(&self) -> Dimensions {
pub fn dimensions(&self) -> Dimensions {
self.dimensions
}

Expand Down
2 changes: 1 addition & 1 deletion src/xlsx/cells_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ impl<'a> XlsxCellReader<'a> {
})
}

pub(crate) fn dimensions(&self) -> Dimensions {
pub fn dimensions(&self) -> Dimensions {
self.dimensions
}

Expand Down

0 comments on commit 9c0b057

Please sign in to comment.