Author: ts Date: Mon Jan 21 22:40:18 2008 New Revision: 7222 Log: - Removed unneccessary === true checks.
Modified: trunk/Cache/src/options/storage_apc.php trunk/Cache/src/options/storage_file.php trunk/Cache/src/options/storage_memcache.php Modified: trunk/Cache/src/options/storage_apc.php ============================================================================== --- trunk/Cache/src/options/storage_apc.php [iso-8859-1] (original) +++ trunk/Cache/src/options/storage_apc.php [iso-8859-1] Mon Jan 21 22:40:18 2008 @@ -71,7 +71,7 @@ */ public function __get( $name ) { - if ( isset( $this->properties[$name] ) === true ) + if ( isset( $this->properties[$name] ) ) { return $this->properties[$name]; } Modified: trunk/Cache/src/options/storage_file.php ============================================================================== --- trunk/Cache/src/options/storage_file.php [iso-8859-1] (original) +++ trunk/Cache/src/options/storage_file.php [iso-8859-1] Mon Jan 21 22:40:18 2008 @@ -86,7 +86,7 @@ */ public function __get( $key ) { - if ( isset( $this->properties[$key] ) === true ) + if ( isset( $this->properties[$key] ) ) { return $this->properties[$key]; } Modified: trunk/Cache/src/options/storage_memcache.php ============================================================================== --- trunk/Cache/src/options/storage_memcache.php [iso-8859-1] (original) +++ trunk/Cache/src/options/storage_memcache.php [iso-8859-1] Mon Jan 21 22:40:18 2008 @@ -108,7 +108,7 @@ */ public function __get( $name ) { - if ( isset( $this->properties[$name] ) === true ) + if ( isset( $this->properties[$name] ) ) { return $this->properties[$name]; } -- svn-components mailing list svn-components@lists.ez.no http://lists.ez.no/mailman/listinfo/svn-components