Format.
This commit is contained in:
parent
bcc7c0c858
commit
f3a7cf629c
|
@ -236,8 +236,7 @@ public class FastDateParser implements DateParser, Serializable {
|
|||
char c = pattern.charAt(currentIdx);
|
||||
if (!activeQuote && isFormatLetter(c)) {
|
||||
break;
|
||||
}
|
||||
else if( c=='\'' ) {
|
||||
} else if (c == '\'') {
|
||||
if (++currentIdx == pattern.length() || pattern.charAt(currentIdx) != '\'') {
|
||||
activeQuote = !activeQuote;
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue