BAEL-838 Removed unresolved conflict.

This commit is contained in:
iaforek 2017-05-16 15:32:16 +01:00
parent bc6d707976
commit 467646d613

View File

@ -21,10 +21,6 @@ public class StringHelper {
public static String removeLastCharRegexOptional(String s) {
return Optional.ofNullable(s)
.map(str -> str.replaceAll(".$", ""))
<<<<<<< HEAD
.orElse(s);
=======
.orElse(null);
>>>>>>> refs/remotes/eugenp/master
}
}