diff options
author | Dominik Eckelmann <deckelmann@gmail.com> | 2012-01-22 11:58:39 +0100 |
---|---|---|
committer | Dominik Eckelmann <deckelmann@gmail.com> | 2012-01-22 11:58:39 +0100 |
commit | 200ff6b799de7ba300488ec4cb4833c0092761e5 (patch) | |
tree | aba3bbd39fd35ed3933f7cc7954eea6289668d11 /inc/remote.php | |
parent | 995dc0ce9ce4e23e9f15e7088aa1219ab72835cb (diff) | |
download | rpg-200ff6b799de7ba300488ec4cb4833c0092761e5.tar.gz rpg-200ff6b799de7ba300488ec4cb4833c0092761e5.tar.bz2 |
removed unused class
Diffstat (limited to 'inc/remote.php')
-rw-r--r-- | inc/remote.php | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/inc/remote.php b/inc/remote.php index 8c505911c..0a507e95d 100644 --- a/inc/remote.php +++ b/inc/remote.php @@ -6,18 +6,6 @@ require_once(DOKU_INC.'inc/RemoteAPICore.php'); class RemoteException extends Exception {} class RemoteAccessDeniedException extends RemoteException {} -abstract class RemoteDataType { - private $value; - - function __construct($value) { - $this->value = $value; - } - - function getValue() { - return $this->value; - } -} - /** * This class provides information about remote access to the wiki. * |