mirror of
https://github.com/KokaKiwi/BarInsta
synced 2025-12-12 15:06:30 +00:00
v16.6-a5 fix issue reported by @SaurabhBhaiyaji
This commit is contained in:
parent
07dd0e12a1
commit
e705131dea
1 changed files with 1 additions and 1 deletions
|
|
@ -215,7 +215,7 @@ public final class Utils {
|
||||||
if (++i == commentLength) break;
|
if (++i == commentLength) break;
|
||||||
currChar = text.charAt(i);
|
currChar = text.charAt(i);
|
||||||
|
|
||||||
if (currChar == '.') {
|
if (currChar == '.' && i + 1 < commentLength) {
|
||||||
final char nextChar = text.charAt(i + 1);
|
final char nextChar = text.charAt(i + 1);
|
||||||
if (nextChar == '.' || nextChar == ' ' || nextChar == '#' || nextChar == '@' || nextChar == '/'
|
if (nextChar == '.' || nextChar == ' ' || nextChar == '#' || nextChar == '@' || nextChar == '/'
|
||||||
|| nextChar == '\r' || nextChar == '\n') {
|
|| nextChar == '\r' || nextChar == '\n') {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue