From 79b5343d6b1b472c70a089b8ad28d166118f05fa Mon Sep 17 00:00:00 2001 From: epriestley Date: Thu, 9 Jun 2011 12:30:28 -0700 Subject: [PATCH] Remove "@" from resource map include since there is no reason to silence this file and it makes it impossible to find syntax errors. --- src/infrastructure/celerity/map/CelerityResourceMap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/infrastructure/celerity/map/CelerityResourceMap.php b/src/infrastructure/celerity/map/CelerityResourceMap.php index 8e02226fb3..2dc0be4465 100644 --- a/src/infrastructure/celerity/map/CelerityResourceMap.php +++ b/src/infrastructure/celerity/map/CelerityResourceMap.php @@ -27,7 +27,7 @@ final class CelerityResourceMap { if (empty(self::$instance)) { self::$instance = new CelerityResourceMap(); $root = phutil_get_library_root('phabricator'); - $ok = @include_once $root.'/__celerity_resource_map__.php'; + $ok = include_once $root.'/__celerity_resource_map__.php'; if (!$ok) { throw new Exception("Failed to load Celerity resource map!"); }