Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Group
if
conditions in Server:initialize
func
The conditions like if a == nil and b == nil then c = 'something' end if a == nil and b then c = 'something else' end going in a row looks a little strange. This patch groups such conditions into the following construction: if a == nil then if b == nil then c = 'something' else c = 'something else' end end
- Loading branch information