Merge pull request #1473 from eclipse/cd_xtext_issue1738

[eclipse/xtext#1738] use java.text.SimpleDateFormat instead of com.ibm.icu.SimpleDateFormat
This commit is contained in:
Christian Dietrich 2020-05-05 11:17:34 +02:00 committed by GitHub
commit 20899a926e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2010 itemis AG (http://www.itemis.eu) and others.
* Copyright (c) 2010, 2020 itemis AG (http://www.itemis.eu) and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
@ -8,6 +8,7 @@
*******************************************************************************/
package org.eclipse.xtext.parser.terminalrules;
import java.text.SimpleDateFormat;
import java.util.Date;
import org.eclipse.xtext.parser.terminalrules.ecoreTerminalsTestLanguage.EcoreTerminalsTestLanguageFactory;
@ -16,8 +17,6 @@ import org.eclipse.xtext.serializer.ISerializer;
import org.eclipse.xtext.tests.AbstractXtextTests;
import org.junit.Test;
import com.ibm.icu.text.SimpleDateFormat;
/**
* @author Jan Koehnlein - Initial contribution and API
*/