Revize 1c921b68
Přidáno uživatelem Jakub Šmíd před téměř 3 roky(ů)
backend/src/main/java/cz/zcu/kiv/backendapi/catalog/CatalogItemServiceImpl.java | ||
---|---|---|
161 | 161 |
suffix = token.substring(endTextIndex, end); |
162 | 162 |
} |
163 | 163 |
|
164 |
if (endTextIndex < startTextIndex) { |
|
165 |
highlightedText.append(prefix).append(" "); |
|
166 |
continue; |
|
167 |
} |
|
168 |
|
|
164 | 169 |
textToFind = token.substring(startTextIndex, endTextIndex); |
165 | 170 |
|
166 | 171 |
if (types.contains(textToFind)) { |
Také k dispozici: Unified diff
Fixed single punctuation character in path search error
re #9620