com.viae.maven.sonar.utils.SpecialCharacterUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-maven-plugin Show documentation
Show all versions of sonar-maven-plugin Show documentation
This plugin will make maven interact with SONAR.
The newest version!
package com.viae.maven.sonar.utils;
import java.util.Optional;
/**
* @author by Maarten on 25/09/2016.
*/
public class SpecialCharacterUtil {
public static String makeStringFreeOfSpecialCharacters( final String value ) {
return Optional.ofNullable( value ).orElse( "" ).replace( "/", "-" );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy