diff --git a/system/html.php b/system/html.php
index aba7a563..13c88fa7 100644
--- a/system/html.php
+++ b/system/html.php
@@ -149,28 +149,6 @@ class HTML {
return '
';
}
- /**
- * Generate HTML breaks.
- *
- * @param int $count
- * @return string
- */
- public static function breaks($count = 1)
- {
- return str_repeat('
', $count);
- }
-
- /**
- * Generate non-breaking spaces.
- *
- * @param int $count
- * @return string
- */
- public static function spaces($count = 1)
- {
- return str_repeat(' ', $count);
- }
-
/**
* Generate an ordered list.
*