diff options
author | Matt Brubeck <mbrubeck@limpet.net> | 2016-11-30 09:32:18 -0800 |
---|---|---|
committer | Matt Brubeck <mbrubeck@limpet.net> | 2016-11-30 09:38:27 -0800 |
commit | be6ee9d1dd7d8a36df868f3c1a605acbca890a8b (patch) | |
tree | e9c15bb8e3d0b2c04cbc7312530ca4e8bf51859c /components/layout/table.rs | |
parent | f14e7339b5ff95fce0127dce4fe87ce082ab7259 (diff) | |
download | servo-be6ee9d1dd7d8a36df868f3c1a605acbca890a8b.tar.gz servo-be6ee9d1dd7d8a36df868f3c1a605acbca890a8b.zip |
Remove unnecessary Flow::column_sizes methods
Diffstat (limited to 'components/layout/table.rs')
-rw-r--r-- | components/layout/table.rs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/components/layout/table.rs b/components/layout/table.rs index b1f3a01fc22..6d95ff0b1e0 100644 --- a/components/layout/table.rs +++ b/components/layout/table.rs @@ -217,14 +217,6 @@ impl Flow for TableFlow { self.block_flow.mark_as_root(); } - fn column_intrinsic_inline_sizes(&mut self) -> &mut Vec<ColumnIntrinsicInlineSize> { - &mut self.column_intrinsic_inline_sizes - } - - fn column_computed_inline_sizes(&mut self) -> &mut Vec<ColumnComputedInlineSize> { - &mut self.column_computed_inline_sizes - } - /// The specified column inline-sizes are set from column group and the first row for the fixed /// table layout calculation. /// The maximum min/pref inline-sizes of each column are set from the rows for the automatic |