From 9a14ffc2a6e0028cf6d8890aa82d817d20adc409 Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Mon, 9 Aug 2010 14:28:48 -0400 Subject: [PATCH] Prune dead code --- framework/Icalendar/lib/Horde/Icalendar.php | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/framework/Icalendar/lib/Horde/Icalendar.php b/framework/Icalendar/lib/Horde/Icalendar.php index 45078224d..997595c1d 100644 --- a/framework/Icalendar/lib/Horde/Icalendar.php +++ b/framework/Icalendar/lib/Horde/Icalendar.php @@ -1315,24 +1315,6 @@ class Horde_Icalendar } /** - * Exports a Time field. - * - * @param array $value An array of time parts. - * - * @return string hhmmss[Z] representation of the time - */ - protected function _exportTime($value) - { - $time = sprintf('%02d%02d%02d', - $value['hour'], $value['minute'], $value['second']); - if ($value['zone'] == 'UTC') { - $time .= 'Z'; - } - - return $time; - } - - /** * Parses a Date field. * * @param $text TODO -- 2.11.0