removed empty/unsued else conditionals

This commit is contained in:
Chris A. Evans
2016-07-05 12:17:25 -05:00
parent 95ad8f186e
commit 38e222fd8a
4 changed files with 0 additions and 14 deletions
@@ -25,8 +25,5 @@ if ($device['os'] == 'binos') {
discover_processor($valid['processor'], $device, '.1.3.6.1.4.1.738.1.111.3.1.2.1.0', '0', 'binos', $descr, '1', $usage, null, null);
}
}
else {
}
}
@@ -39,8 +39,4 @@ if ($device['os'] == 'binox') {
}
}
}
else {
}
}
@@ -32,9 +32,5 @@ if ($device['os'] == 'binos') {
if (is_numeric($value)) {
discover_sensor($valid['sensor'], 'temperature', $device, $valueoid, 1, 'binos', $descr, '1', '1', $low_limit, $low_warn_limit, $high_warn_limit, $high_limit, $value);
}
}
else {
}
}
@@ -33,7 +33,4 @@ if ($device['os'] == 'binox') {
discover_sensor($valid['sensor'], 'temperature', $device, $valueoid, 1, 'binox', $descr, '1', '1', $low_limit, $low_warn_limit, $high_warn_limit, $high_limit, $value);
}
}
else {
}
}