Prune dead code
authorMichael J. Rubinsky <mrubinsk@horde.org>
Mon, 9 Aug 2010 18:28:48 +0000 (14:28 -0400)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Mon, 9 Aug 2010 18:28:48 +0000 (14:28 -0400)
framework/Icalendar/lib/Horde/Icalendar.php

index 4507822..997595c 100644 (file)
@@ -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