From: Michael J. Rubinsky Date: Mon, 9 Aug 2010 18:28:48 +0000 (-0400) Subject: Prune dead code X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=9a14ffc2a6e0028cf6d8890aa82d817d20adc409;p=horde.git Prune dead code --- 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