~ubuntu-branches/ubuntu/oneiric/mysql-connector-java/oneiric

« back to all changes in this revision

Viewing changes to src/com/mysql/jdbc/EscapeTokenizer.java

  • Committer: Bazaar Package Importer
  • Author(s): Michael Koch
  • Date: 2007-11-30 10:34:13 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20071130103413-mxm4lpfrr4fnjbuj
Tags: 5.1.5+dfsg-1
* New upstream release. Closes: #450718.
* Add Homepage field to debian/control.

Show diffs side-by-side

added added

removed removed

Lines of Context:
139
139
                                tokenBuf.append(c);
140
140
                        } else if (c == '-') {
141
141
                                if ((this.lastChar == '-')
142
 
                                                && ((this.lastLastChar != '\\') & !this.inQuotes)) {
 
142
                                                && ((this.lastLastChar != '\\') && !this.inQuotes)) {
143
143
                                        this.inComment = true;
144
144
                                }
145
145