Contributors:
Igor Malinin - initial contribution
- $Id: PHPPartitionScanner.java,v 1.31 2005-10-09 11:24:07 axelcl Exp $
+ $Id: PHPPartitionScanner.java,v 1.32 2005-10-09 12:35:01 axelcl Exp $
**********************************************************************/
package net.sourceforge.phpeclipse.phpeditor.php;
if (position >= end) {
return false;
}
- if (pos==heredocIdent.length) {
+ if (pos == heredocIdent.length) {
return true;
}
ch = document.getChar(position++); // ignore escaped character
}
pos++;
}
- } else if (ch == '"') {
- return true;
}
}
} catch (BadLocationException e) {