diff --git a/Shell/LineEditor.cpp b/Shell/LineEditor.cpp index 83a959bf97..859e359c0b 100644 --- a/Shell/LineEditor.cpp +++ b/Shell/LineEditor.cpp @@ -184,8 +184,6 @@ Vector LineEditor::tab_complete_other_token(String& token) String path; Vector suggestions; - ASSERT(token.length() != 0); - ssize_t last_slash = token.length() - 1; while (last_slash >= 0 && token[last_slash] != '/') --last_slash;