1
0
Fork 0

Remove unecessary brackets

pull/715/head
Nils Adermann 2012-05-21 18:32:22 +02:00
parent 7f9c5ffeef
commit f193d61dfe
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
/**