Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static String perfectEnd(String str, String attach) {
if (str == null) {
return attach;
}
return str.endsWith(attach) ? str : (str + attach);
}
}