From: Jay Freeman (saurik) Date: Tue, 27 Apr 2010 21:16:34 +0000 (+0000) Subject: Remove now-obsolete prefix size clip. X-Git-Tag: v0.9.432~57 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/996c7c0ce2f75b82b32c43d64c350fd71b05e0cd Remove now-obsolete prefix size clip. --- diff --git a/Console.cpp b/Console.cpp index c4303f6..3fe2310 100644 --- a/Console.cpp +++ b/Console.cpp @@ -358,12 +358,6 @@ static char **Complete(const char *word, int start, int end) { if (count == 0) return NULL; - if (!common.empty()) { - size_t size(prefix.str().size()); - _assert(common.size() >= size); - common = common.substr(size); - } - size_t colon(common.find(':')); if (colon != std::string::npos) common = common.substr(0, colon + 1);