Remove dead code

Signed-off-by: Marc Delisle <marc@infomarc.info>
This commit is contained in:
Marc Delisle 2015-04-01 11:19:11 -04:00
parent da5f099ee5
commit 2e381cb248
2 changed files with 3 additions and 6 deletions

View File

@ -1260,7 +1260,6 @@ function PMA_RTN_getQueryFromRequest()
)
) {
if (! $warned_about_length) {
$warned_about_length = true;
$errors[] = __(
'You must provide length/values for routine parameters'
. ' of type ENUM, SET, VARCHAR and VARBINARY.'

View File

@ -232,15 +232,14 @@ class PMA_GIS_MultilinestringTest extends PMA_GIS_GeomTest
* @param string $line_color color for the GIS MULTILINESTRING object
* @param array $scale_data array containing data related to scaling
* @param object $image image object
* @param string $output expected output
*
* @return void
* @dataProvider providerForPrepareRowAsPng
*/
public function testPrepareRowAsPng(
$spatial, $label, $line_color, $scale_data, $image, $output
$spatial, $label, $line_color, $scale_data, $image
) {
$return = $this->object->prepareRowAsPng(
$this->object->prepareRowAsPng(
$spatial, $label, $line_color, $scale_data, $image
);
/* TODO: this never fails */
@ -265,8 +264,7 @@ class PMA_GIS_MultilinestringTest extends PMA_GIS_GeomTest
'scale' => 2,
'height' => 150
),
imagecreatetruecolor('120', '150'),
''
imagecreatetruecolor('120', '150')
)
);
}