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

com.github.jasonmfehr.combiner.transformer.StripNewlines Maven / Gradle / Ivy

package com.github.jasonmfehr.combiner.transformer;

import java.util.Map;

import org.apache.maven.project.MavenProject;


public class StripNewlines implements ResourceTransformer {

	public String transform(final String resourceName, String resourceContents, Map settings, MavenProject mavenProject) {
		return resourceContents.replaceAll("\r|\n", "");
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy