Skip to content

Commit

Permalink
Fixing an equality statement in WrappedMethod
Browse files Browse the repository at this point in the history
  • Loading branch information
KrisJordan committed Jun 5, 2009
1 parent d68f5db commit c5a10e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recess/recess/lang/WrappedMethod.class.php
Expand Up @@ -108,7 +108,7 @@ function call() {

foreach(array_reverse($this->wrappers) as $wrapper) {
$wrapperReturn = $wrapper->after($object, $returns);
if($wrapperReturn != null) {
if($wrapperReturn !== null) {
$returns = $wrapperReturn;
}
}
Expand Down

0 comments on commit c5a10e5

Please sign in to comment.