Browse Source

Remove unecessary brackets

Nils Adermann 13 years ago
parent
commit
f193d61dfe
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/Composer/DependencyResolver/RuleWatchNode.php

+ 2 - 2
src/Composer/DependencyResolver/RuleWatchNode.php

@@ -37,8 +37,8 @@ class RuleWatchNode
 
         $literals = $rule->getLiterals();
 
-        $this->watch1 = (count($literals) > 0) ? $literals[0] : 0;
-        $this->watch2 = (count($literals) > 1) ? $literals[1] : 0;
+        $this->watch1 = count($literals) > 0 ? $literals[0] : 0;
+        $this->watch2 = count($literals) > 1 ? $literals[1] : 0;
     }
 
     /**