Drop unnecessary parens

This commit is contained in:
Jack Nagel 2014-08-02 19:43:13 -05:00
parent 142beddd7a
commit 018aeb05ab

View File

@ -23,7 +23,7 @@ class CxxStdlib
# libstdc++ is compatible across Apple compilers, but # libstdc++ is compatible across Apple compilers, but
# not between Apple and GNU compilers, or between GNU compiler versions # not between Apple and GNU compilers, or between GNU compiler versions
def compatible_with?(other) def compatible_with?(other)
(type.nil? || other.type.nil?) || type == other.type type.nil? || other.type.nil? || type == other.type
end end
def check_dependencies(formula, deps) def check_dependencies(formula, deps)