538539540541542543544545546547548
if (tmp.startsWith(contexts[pos].name)) { length = contexts[pos].name.length(); if (tmp.length() == length) { found = true; break; } else if (tmp.startsWithIgnoreCase("/", length)) { found = true; break; } } if (lastSlash == -1) {
802803804805806807808809810811812
if (tmp.startsWith(wrappers[pos].name)) { length = wrappers[pos].name.length(); if (tmp.length() == length) { found = true; break; } else if (tmp.startsWithIgnoreCase("/", length)) { found = true; break; } } if (lastSlash == -1) {