Tiny tweak to remove a duplicated line.

This commit is contained in:
mark_story 2011-02-05 10:43:30 -05:00
parent 79bbd227e3
commit ca22624b2b

View file

@ -272,11 +272,10 @@ class App {
$path = array_flip(array_flip(array_merge( $path = array_flip(array_flip(array_merge(
(array)$paths[$type], self::${$type}, $merge (array)$paths[$type], self::${$type}, $merge
))); )));
self::${$type} = array_values($path);
} else { } else {
$path = array_flip(array_flip(array_merge(self::${$type}, $merge))); $path = array_flip(array_flip(array_merge(self::${$type}, $merge)));
self::${$type} = array_values($path);
} }
self::${$type} = array_values($path);
} }
} }