Merge "Added DBAccessObjectUtils class to avoid duplication"
[lhc/web/wiklou.git] / includes / cache / LocalisationCache.php
index 5b802aa..276e84a 100644 (file)
@@ -539,13 +539,11 @@ class LocalisationCache {
        public function readJSONFile( $fileName ) {
 
                if ( !is_readable( $fileName ) ) {
-
                        return array();
                }
 
                $json = file_get_contents( $fileName );
                if ( $json === false ) {
-
                        return array();
                }