Skip to content

Commit

Permalink
Dropping blank first lines from functions.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmstacey committed Jul 16, 2009
1 parent 89fc86b commit 971bd35
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions includes/stream_wrapper_registry.inc
Expand Up @@ -129,7 +129,6 @@ class DrupalStreamWrapperRegistry {
* does not have a registered handler.
*/
public static function getValidStreamScheme($uri) {

if (!$scheme = self::getStreamScheme($uri)) {
// URI doesn't even contain a scheme
return FALSE;
Expand Down Expand Up @@ -187,7 +186,6 @@ class DrupalStreamWrapperRegistry {
* FALSE is returned if no registered handler could be found.
*/
public static function getInstanceByUri($uri) {

$class = self::getClassName(self::getStreamScheme($uri));
if (class_exists($class)) {
$instance = new $class;
Expand Down Expand Up @@ -219,7 +217,6 @@ class DrupalStreamWrapperRegistry {
* FALSE is returned if no registered handler could be found.
*/
public static function getInstanceByScheme($scheme) {

return self::getInstanceByUri($scheme . '://');
}

Expand Down

0 comments on commit 971bd35

Please sign in to comment.