summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/lib/wizardresult.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/user_ldap/lib/wizardresult.php')
-rw-r--r--apps/user_ldap/lib/wizardresult.php8
1 files changed, 0 insertions, 8 deletions
diff --git a/apps/user_ldap/lib/wizardresult.php b/apps/user_ldap/lib/wizardresult.php
index 1d683fee976..2140f654fd0 100644
--- a/apps/user_ldap/lib/wizardresult.php
+++ b/apps/user_ldap/lib/wizardresult.php
@@ -25,7 +25,6 @@ namespace OCA\user_ldap\lib;
class WizardResult {
protected $changes = array();
- protected $specifics = array();
public function addChange($key, $value) {
$this->changes[$key] = $value;
@@ -35,16 +34,9 @@ class WizardResult {
return count($this->changes) > 0;
}
- public function addSpecific($key, $value) {
- $this->specifics[$key] = $value;
- }
-
public function getResultArray() {
$result = array();
$result['changes'] = $this->changes;
- foreach($this->specifics as $key => $value) {
- $result[$key] = $value;
- }
return $result;
}
} \ No newline at end of file