We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e464b27 commit d39d289Copy full SHA for d39d289
lib/Varien/Image/Adapter.php
@@ -18,7 +18,6 @@ class Varien_Image_Adapter
18
public const ADAPTER_GD = 'GD';
19
public const ADAPTER_GD2 = 'GD2';
20
public const ADAPTER_IM = 'IMAGEMAGIC';
21
- public const ADAPTER_IME = 'IMAGEMAGIC_EXTERNAL';
22
23
public static function factory($adapter)
24
{
@@ -35,10 +34,6 @@ public static function factory($adapter)
35
34
return new Varien_Image_Adapter_Imagemagic();
36
break;
37
38
- case self::ADAPTER_IME:
39
- return new Varien_Image_Adapter_ImagemagicExternal();
40
- break;
41
-
42
default:
43
throw new Exception('Invalid adapter selected.');
44
0 commit comments