Commit 8532d23e authored by David Novak's avatar David Novak
Browse files

* removing one constructor from JoinQO that had the same number of arguments...

 * removing one constructor from JoinQO that had the same number of arguments as other constructor that was used more often
parent 136bbe8d
Loading
Loading
Loading
Loading
+0 −12
Original line number Original line Diff line number Diff line
@@ -88,18 +88,6 @@ public class JoinQueryOperation extends QueryOperation<RankedJoinObject> {
        this(mu, Integer.MAX_VALUE, skipSymmetricPairs, answerType);
        this(mu, Integer.MAX_VALUE, skipSymmetricPairs, answerType);
    }
    }


    /**
     * Creates a new instance of JoinQueryOperation for a given distance threshold and maximal number of pairs to return.
     * Objects in qualifying pairs added to answer are updated to {@link AnswerType#NODATA_OBJECTS no-data objects}.
     * @param mu the distance threshold
     * @param k the number of nearest pairs to retrieve
     * @param skipSymmetricPairs flag whether symmetric pairs should be avoided in the answer
     */
    @AbstractOperation.OperationConstructor({"Distance threshold", "Number of nearest pairs", "Skip symmetric pairs"})
    public JoinQueryOperation(float mu, int k, boolean skipSymmetricPairs) {
        this(mu, k, skipSymmetricPairs, AnswerType.NODATA_OBJECTS);
    }

    /**
    /**
     * Creates a new instance of JoinQueryOperation for a given distance threshold and maximal number of objects to return.
     * Creates a new instance of JoinQueryOperation for a given distance threshold and maximal number of objects to return.
     * @param mu the distance threshold
     * @param mu the distance threshold