cayenne/src/main/java/org/apache/cayenne/access/translator/ejbql/EJBQLDbPathTranslator.java [56:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public boolean visitDbPath(EJBQLExpression expression, int finishedChildIndex) {
		if (finishedChildIndex > 0) {

			if (finishedChildIndex + 1 < expression.getChildrenCount()) {
				processIntermediatePathComponent();
			} else {
				processLastPathComponent();
			}
		}

		return true;
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



cayenne/src/main/java/org/apache/cayenne/access/translator/ejbql/EJBQLPathTranslator.java [68:80]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public boolean visitPath(EJBQLExpression expression, int finishedChildIndex) {

		if (finishedChildIndex > 0) {

			if (finishedChildIndex + 1 < expression.getChildrenCount()) {
				processIntermediatePathComponent();
			} else {
				processLastPathComponent();
			}
		}

		return true;
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



