Replaced StringEscapeUtils from apache commons-lang3 with commons-text

StringEscapeUtils from commons-lang3 was deprecated and should be using version from commons-text
Optimized imports
This commit is contained in:
Collin Smith
2020-06-14 12:35:15 -07:00
parent dd54d11d9f
commit cbd55ee164
4 changed files with 23 additions and 22 deletions

View File

@ -17,7 +17,7 @@ import org.apache.commons.cli.CommandLine;
import org.apache.commons.cli.CommandLineParser;
import org.apache.commons.cli.DefaultParser;
import org.apache.commons.cli.Options;
import org.apache.commons.lang3.StringEscapeUtils;
import org.apache.commons.text.StringEscapeUtils;
import com.badlogic.gdx.Application;
import com.badlogic.gdx.ApplicationAdapter;