Query the timefactory instead of creating it

Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
This commit is contained in:
Lukas Reschke 2016-10-28 12:56:41 +02:00
parent 3e6dd86ee4
commit df7fd2b57c
No known key found for this signature in database
GPG Key ID: B9F6980CF6E759B1
2 changed files with 3 additions and 3 deletions

View File

@ -350,7 +350,7 @@ class OC_App {
new \OC\App\AppStore\Fetcher\AppFetcher(
\OC::$server->getAppDataDir('appstore'),
\OC::$server->getHTTPClientService(),
new \OC\AppFramework\Utility\TimeFactory(),
\OC::$server->query(\OC\AppFramework\Utility\TimeFactory::class),
$config
),
\OC::$server->getHTTPClientService(),

View File

@ -96,7 +96,7 @@ class Application extends App {
return new AppFetcher(
$server->getAppDataDir('appstore'),
$server->getHTTPClientService(),
new TimeFactory(),
$server->query(TimeFactory::class),
$server->getConfig()
);
});
@ -106,7 +106,7 @@ class Application extends App {
return new CategoryFetcher(
$server->getAppDataDir('appstore'),
$server->getHTTPClientService(),
new TimeFactory()
$server->query(TimeFactory::class)
);
});
}