summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorDominik Eckelmann <deckelmann@gmail.com>2012-01-22 11:58:39 +0100
committerDominik Eckelmann <deckelmann@gmail.com>2012-01-22 11:58:39 +0100
commit200ff6b799de7ba300488ec4cb4833c0092761e5 (patch)
treeaba3bbd39fd35ed3933f7cc7954eea6289668d11 /inc
parent995dc0ce9ce4e23e9f15e7088aa1219ab72835cb (diff)
downloadrpg-200ff6b799de7ba300488ec4cb4833c0092761e5.tar.gz
rpg-200ff6b799de7ba300488ec4cb4833c0092761e5.tar.bz2
removed unused class
Diffstat (limited to 'inc')
-rw-r--r--inc/remote.php12
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.
*