浏览代码

LibWeb: Delete unused AvailableSize::to_px()

Aliaksandr Kalenik 2 年之前
父节点
当前提交
bb52d76be3
共有 1 个文件被更改,包括 0 次插入5 次删除
  1. 0 5
      Userland/Libraries/LibWeb/Layout/AvailableSpace.h

+ 0 - 5
Userland/Libraries/LibWeb/Layout/AvailableSpace.h

@@ -33,11 +33,6 @@ public:
     bool is_max_content() const { return m_type == Type::MaxContent; }
     bool is_intrinsic_sizing_constraint() const { return is_min_content() || is_max_content(); }
 
-    CSSPixels to_px() const
-    {
-        return m_value;
-    }
-
     CSSPixels to_px_or_zero() const
     {
         if (!is_definite())