summaryrefslogtreecommitdiffstats
path: root/lib/SimpleSAML/Store.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/SimpleSAML/Store.php')
-rw-r--r--lib/SimpleSAML/Store.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/SimpleSAML/Store.php b/lib/SimpleSAML/Store.php
index e45d4a7..2ea922d 100644
--- a/lib/SimpleSAML/Store.php
+++ b/lib/SimpleSAML/Store.php
@@ -47,9 +47,6 @@ abstract class SimpleSAML_Store {
self::$instance = new SimpleSAML_Store_SQL();
break;
default:
- if (strpos($storeType, ':') === FALSE) {
- throw new SimpleSAML_Error_Exception('Unknown datastore type: ' . var_export($storeType, TRUE));
- }
/* Datastore from module. */
$className = SimpleSAML_Module::resolveClass($storeType, 'Store', 'SimpleSAML_Store');
self::$instance = new $className();