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

com.kryshchuk.maven.plugins.filevisitor.IdentityFileMapper Maven / Gradle / Ivy

/**
 * 
 */
package com.kryshchuk.maven.plugins.filevisitor;

import java.io.File;

/**
 * File mapper that returns the same file.
 * 
 * @author yura
 * @since 1.0.2
 */
public class IdentityFileMapper implements FileMapper {

  public File getMappedFile(final File file) {
    return file;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy