[Pkg-owncloud-commits] [owncloud] 52/153: Remove unnecessary sprintf.
David Prévot
taffit at moszumanska.debian.org
Tue May 27 03:05:34 UTC 2014
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository owncloud.
commit 8e758513c8f7a28300d006fd8b46a1bd01264606
Author: Andreas Fischer <bantu at owncloud.com>
Date: Tue Apr 15 17:21:55 2014 +0200
Remove unnecessary sprintf.
---
core/command/db/converttype.php | 10 ++--------
1 file changed, 2 insertions(+), 8 deletions(-)
diff --git a/core/command/db/converttype.php b/core/command/db/converttype.php
index 1fd546a..3382ebb 100644
--- a/core/command/db/converttype.php
+++ b/core/command/db/converttype.php
@@ -111,10 +111,7 @@ class ConvertType extends Command {
protected function validateInput(InputInterface $input, OutputInterface $output) {
$type = $input->getArgument('type');
if ($this->connectionFactory->normalizeType($type) === 'sqlite3') {
- $output->writeln(sprintf(
- '<error>Converting to SQLite (sqlite3) is currently not supported.</error>',
- $type
- ));
+ $output->writeln('<error>Converting to SQLite (sqlite3) is currently not supported.</error>');
return 1;
}
if ($type === $this->config->getValue('dbtype', '')) {
@@ -129,10 +126,7 @@ class ConvertType extends Command {
// to drop sequence triggers when dropping a table, even though
// such triggers may not exist. This results in errors like
// "ORA-04080: trigger 'OC_STORAGES_AI_PK' does not exist".
- $output->writeln(sprintf(
- '<error>The --clear-schema option is not supported when converting to Oracle (oci).</error>',
- $type
- ));
+ $output->writeln('<error>The --clear-schema option is not supported when converting to Oracle (oci).</error>');
return 1;
}
}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git
More information about the Pkg-owncloud-commits
mailing list