diff options
author | James Ahlborn <jtahlborn@yahoo.com> | 2019-01-29 02:00:59 +0000 |
---|---|---|
committer | James Ahlborn <jtahlborn@yahoo.com> | 2019-01-29 02:00:59 +0000 |
commit | cb9ed9bd0bee33de31c4c3323dc46cac53be2745 (patch) | |
tree | a93cb7365f469d34670e367539b916b4fe88310a /src/main | |
parent | 743ea3342892c814a253105a33525ef5ae7e4d69 (diff) | |
download | jackcess-cb9ed9bd0bee33de31c4c3323dc46cac53be2745.tar.gz jackcess-cb9ed9bd0bee33de31c4c3323dc46cac53be2745.zip |
Fix parsing of escaped double quotes in expressions
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@1267 f203690c-595d-4dc9-a70b-905162fa7fd2
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/com/healthmarketscience/jackcess/impl/expr/ExpressionTokenizer.java | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main/java/com/healthmarketscience/jackcess/impl/expr/ExpressionTokenizer.java b/src/main/java/com/healthmarketscience/jackcess/impl/expr/ExpressionTokenizer.java index cc0fca4..8705490 100644 --- a/src/main/java/com/healthmarketscience/jackcess/impl/expr/ExpressionTokenizer.java +++ b/src/main/java/com/healthmarketscience/jackcess/impl/expr/ExpressionTokenizer.java @@ -269,7 +269,6 @@ class ExpressionTokenizer char c = buf.next(); if(c == endChar) { if(allowDoubledEscape && (buf.peekNext() == endChar)) { - sb.append(endChar); buf.next(); } else { complete = true; |