todo_trek
todo_trek copied to clipboard
remove redundant 'if'
My IDE complains that this if
is redundant because logs == []
will always be false (because we're within the [_ | _] = logs
branch of the case
statement.
Is this a typo or am I missing something?