1
0
Fork 0

Fixed blank lines.

pull/104/head
Per Bernhardt 2011-11-10 13:39:51 +01:00
parent b0d2897af3
commit 38198a5f36
2 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,6 @@ use Composer\Package\PackageInterface;
*/ */
class HgDownloader implements DownloaderInterface class HgDownloader implements DownloaderInterface
{ {
/** /**
* {@inheritDoc} * {@inheritDoc}
*/ */

View File

@ -58,6 +58,7 @@ class HgDriver implements VcsDriverInterface
exec(sprintf('cd %s && hg tip --template "{rev}:{node|short}" --color never', $tmpDir), $output); exec(sprintf('cd %s && hg tip --template "{rev}:{node|short}" --color never', $tmpDir), $output);
$this->rootIdentifier = $output[0]; $this->rootIdentifier = $output[0];
} }
return $this->rootIdentifier; return $this->rootIdentifier;
} }