I am getting this warning on Sonar.I want solution to remove this warning on sonar. My class is like this :
public class FilePathHelper { private static Stri
Add private constructor:
private FilePathHelper(){ super(); }