mirror of
https://github.com/TakeMeDownBaby/barinsta.git
synced 2024-11-04 17:51:41 +01:00
v16.6-a5 fix issue reported by @SaurabhBhaiyaji
This commit is contained in:
parent
07dd0e12a1
commit
e705131dea
@ -215,7 +215,7 @@ public final class Utils {
|
||||
if (++i == commentLength) break;
|
||||
currChar = text.charAt(i);
|
||||
|
||||
if (currChar == '.') {
|
||||
if (currChar == '.' && i + 1 < commentLength) {
|
||||
final char nextChar = text.charAt(i + 1);
|
||||
if (nextChar == '.' || nextChar == ' ' || nextChar == '#' || nextChar == '@' || nextChar == '/'
|
||||
|| nextChar == '\r' || nextChar == '\n') {
|
||||
|
Loading…
Reference in New Issue
Block a user