2 Replies Latest reply on Apr 30, 2012 9:12 AM by rhauch

    Issue with org.modeshape.jcr.query.qom.JcrQueryObjectModelFactory.equiJoinCondition(String, String, String, String)

    dimonv

      Hello all,

      hello Randall,

       

      there is a bug in the method org.modeshape.jcr.query.qom.JcrQueryObjectModelFactory.equiJoinCondition(String, String, String, String):

       

          public EquiJoinCondition equiJoinCondition( String selector1Name,
                                                      String property1Name,
                                                      String selector2Name,
                                                      String property2Name ) {
              CheckArg.isNotNull(selector1Name, "selector1Name");
              CheckArg.isNotNull(property1Name, "property1Name");
              CheckArg.isNotNull(selector2Name, "selector2Name");
              CheckArg.isNotNull(selector2Name, "selector2Name");
              return new JcrEquiJoinCondition(selectorName(selector1Name), property1Name, selectorName(selector2Name), selector2Name);
          }

      property2Name is replaced through selector2Name.

       

      Regards