1
0
Fork 0

[Repository] removed unused local $match variable from HgBitbucketDriver::supports() method.

pull/199/head
Hugo Hamon 2012-01-11 11:35:36 +01:00
parent 70d7ab43ee
commit 09f0ba6604
1 changed files with 1 additions and 1 deletions

View File

@ -158,6 +158,6 @@ class HgBitbucketDriver implements VcsDriverInterface
*/ */
public static function supports($url, $deep = false) public static function supports($url, $deep = false)
{ {
return preg_match('#^https://bitbucket\.org/([^/]+)/([^/]+)/?$#', $url, $match); return preg_match('#^https://bitbucket\.org/([^/]+)/([^/]+)/?$#', $url);
} }
} }