I don't see where these are used, or why we would need them...
authorMichael J. Rubinsky <mrubinsk@horde.org>
Tue, 17 Feb 2009 16:05:55 +0000 (11:05 -0500)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Tue, 17 Feb 2009 21:20:28 +0000 (16:20 -0500)
framework/Service_Facebook/lib/Horde/Service/Facebook.php

index 95983ac..b7ee757 100644 (file)
@@ -571,35 +571,6 @@ class Horde_Service_Facebook
     }
 
     /**
-     * JSON encode a validation error.
-     *
-     * @return string  JSON encoded error message.
-     */
-    public function encode_validationError($summary, $message)
-    {
-        return json_encode(
-            array('errorCode'    => FACEBOOK_API_VALIDATION_ERROR,
-                  'errorTitle'   => $summary,
-                  'errorMessage' => $message));
-    }
-
-    public function encode_multiFeedStory($feed, $next)
-    {
-        return json_encode(
-            array('method'   => 'multiFeedStory',
-                  'content'  => array('next' => $next,
-                                      'feed' => $feed)));
-    }
-
-    public function encode_feedStory($feed, $next)
-    {
-        return json_encode(
-            array('method'   => 'feedStory',
-                  'content'  => array('next' => $next,
-                                      'feed' => $feed)));
-    }
-
-    /**
      * Start a batch operation.
      */
     public function begin_batch()