Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Steur <thomas.steur@gmail.com>2015-09-09 11:39:09 +0300
committerThomas Steur <thomas.steur@gmail.com>2015-09-09 11:39:09 +0300
commit65353d7bac8a90bf05545c0ecd693d81b684f9e2 (patch)
treee177dff41f50f1b1f2541c386ecec43bdb933121 /core/ViewDataTable
parentc983e4fce1958cd6e42cec69f5a5056617353788 (diff)
refs #8565 #8503 #8567 refactored/removed some code to not use deprecated APIs / events for 3.0
Diffstat (limited to 'core/ViewDataTable')
-rw-r--r--core/ViewDataTable/Factory.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/core/ViewDataTable/Factory.php b/core/ViewDataTable/Factory.php
index 8822fd04b6..43db3161e9 100644
--- a/core/ViewDataTable/Factory.php
+++ b/core/ViewDataTable/Factory.php
@@ -146,10 +146,6 @@ class Factory
return self::createViewDataTableInstance($visualizations[$type], $controllerAction, $apiAction, $params);
}
- if (class_exists($type)) {
- return self::createViewDataTableInstance($type, $controllerAction, $apiAction, $params);
- }
-
if (array_key_exists($defaultType, $visualizations)) {
return self::createViewDataTableInstance($visualizations[$defaultType], $controllerAction, $apiAction, $params);
}