Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 366502 - Use of java.text.Normalizer breaks java 1.5 compatibility
Summary: Use of java.text.Normalizer breaks java 1.5 compatibility
Status: CLOSED FIXED
Alias: None
Product: EEF
Classification: Modeling
Component: General (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows 7
: P3 normal
Target Milestone: ---   Edit
Assignee: EEF Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-12-13 04:16 EST by William Piers CLA
Modified: 2016-05-05 10:26 EDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description William Piers CLA 2011-12-13 04:16:13 EST
org.eclipse.emf.eef.codegen.services.StringUtilService.toASCII(String)

public String toASCII(String input) {
 return Normalizer.normalize(input, Normalizer.Form.NFD).replaceAll(
				"\\p{InCombiningDiacriticalMarks}+", "");
}
Comment 1 Goulwen Le Fur CLA 2013-05-24 04:01:07 EDT
FIXED: we don't use the Normalizer anymore