Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1006 → Rev 1224

/zpath/trunk/src/ak/zpath/PathCreator.java
302,6 → 302,15
pos = stateConditionSecond(tokens, pos);
break;
 
case Token.TOKEN_CLOSE_BRACKET:
pos = stateConditionEnd(tokens, pos);
break;
 
case Token.TOKEN_AND:
pos++; // go to next token for stateLogicalCondition
pos = stateLogicalCondition(tokens, pos);
break;
 
default:
throw new PathCreateException("Compare operation expected", token);
}