All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bigdata.service.ndx.pipeline.NOPDuplicateRemover Maven / Gradle / Ivy

package com.bigdata.service.ndx.pipeline;

import com.bigdata.btree.keys.KVO;

/**
 * NOP implementation.
 * 
 * @author Bryan Thompson
 * @version $Id$
 * @param 
 */
public class NOPDuplicateRemover implements IDuplicateRemover {

    /**
     * Returns its argument.
     * 
     * @return Its argument.
     */
    public KVO[] filter(final KVO[] a) {

        return a;

    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy