14d13 < import org.jdom.Attribute; 113,119c112,113 < String value2 = null; < Object valueNode = createXPath( xpath, namespaces ).selectSingleNode( node ); < if (valueNode instanceof Content) { < value2 = ((Content) valueNode).getValue().trim(); < } else if (valueNode instanceof Attribute) { < value2 = ((Attribute) valueNode).getValue().trim(); < } --- > String value2 = ((Content) createXPath( xpath, namespaces ).selectSingleNode( node )).getValue().trim(); >