diff --git a/lib/BridgeCard.php b/lib/BridgeCard.php
index 69c67bc4..7bb758d5 100644
--- a/lib/BridgeCard.php
+++ b/lib/BridgeCard.php
@@ -20,27 +20,6 @@
* @todo Return error if a caller creates an object of this class.
*/
final class BridgeCard {
- /**
- * Build a HTML document string of buttons for each of the provided formats
- *
- * @param array $formats A list of format names
- * @return string The document string
- */
- private static function buildFormatButtons($formats) {
- $buttons = '';
-
- foreach($formats as $name) {
- $buttons .= ''
- . PHP_EOL;
- }
-
- return $buttons;
- }
-
/**
* Get the form header for a bridge card
*
@@ -134,7 +113,7 @@ This bridge is not fetching its content through a secure connection';
}
if($isActive) {
- $form .= self::buildFormatButtons($formats);
+ $form .= '';
} else {
$form .= 'Inactive';
}