Issue 3751: Remove ICU4J dependency.

This is only used in a handful of places.
The core java libraries provide the same functionality but with a less exchaustive locale database.

The IBM ICU is more up to date than the Java version but is otherwise identical.

see: https://unicode-org.github.io/icu/userguide/icu4j/#introduction-to-icu4j
This commit is contained in:
Kevin Day 2023-02-22 09:42:17 -06:00
parent 15cb4d7467
commit 5ec99a2204
No known key found for this signature in database
GPG key ID: C38565A8A9CCD783
5 changed files with 4 additions and 12 deletions

View file

@ -7,6 +7,7 @@ import static edu.cornell.mannlib.vitro.webapp.config.RevisionInfoSetup.DATE_FOR
import static org.junit.Assert.assertEquals;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Arrays;
import java.util.Date;
@ -20,8 +21,6 @@ import org.junit.Test;
import stubs.javax.servlet.ServletContextStub;
import stubs.javax.servlet.http.HttpSessionStub;
import com.ibm.icu.text.SimpleDateFormat;
import edu.cornell.mannlib.vitro.testing.AbstractTestClass;
import edu.cornell.mannlib.vitro.webapp.config.RevisionInfoBean.LevelRevisionInfo;
import edu.cornell.mannlib.vitro.webapp.startup.StartupStatus;