Skip to content

Commit

Permalink
Tiny tweak to remove a duplicated line.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Feb 5, 2011
1 parent 79bbd22 commit ca22624
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cake/libs/app.php
Expand Up @@ -272,11 +272,10 @@ public static function build($paths = array(), $reset = false) {
$path = array_flip(array_flip(array_merge(
(array)$paths[$type], self::${$type}, $merge
)));
self::${$type} = array_values($path);
} else {
$path = array_flip(array_flip(array_merge(self::${$type}, $merge)));
self::${$type} = array_values($path);
}
self::${$type} = array_values($path);
}
}

Expand Down

0 comments on commit ca22624

Please sign in to comment.