From 427d24a7a757ba9b05fdbcff37d32ba4e5d201ab Mon Sep 17 00:00:00 2001 From: Bernhard Schussek Date: Thu, 4 Apr 2013 18:34:01 +0200 Subject: [PATCH] [Intl] Outsourced bundle reader creation to Icu component --- src/Symfony/Component/Intl/Intl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Intl/Intl.php b/src/Symfony/Component/Intl/Intl.php index eaebc675b8e0..71ffca6caac6 100644 --- a/src/Symfony/Component/Intl/Intl.php +++ b/src/Symfony/Component/Intl/Intl.php @@ -203,7 +203,7 @@ private static function getBundleReader() { if (null === self::$bundleReader) { self::$bundleReader = new StructuredBundleReader(new BufferedBundleReader( - IcuData::isLoadable() ? new BinaryBundleReader() : new PhpBundleReader(), + IcuData::getBundleReader(), self::BUFFER_SIZE )); }