فهرست منبع

[DoctrineBundle] Removed useless sprintf

Pascal Borreli 14 سال پیش
والد
کامیت
664c00b62e
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/Symfony/Bundle/DoctrineBundle/Command/DropDatabaseDoctrineCommand.php

+ 1 - 1
src/Symfony/Bundle/DoctrineBundle/Command/DropDatabaseDoctrineCommand.php

@@ -74,7 +74,7 @@ EOT
             }
             }
         } else {
         } else {
             $output->writeln(sprintf('<info>Would drop the database named <comment>%s</comment>.</info>', $name));
             $output->writeln(sprintf('<info>Would drop the database named <comment>%s</comment>.</info>', $name));
-            $output->writeln(sprintf('<error>All data will be lost!</error>', $name));
+            $output->writeln('<error>All data will be lost!</error>');
         }
         }
     }
     }
 }
 }