Fix up raw types
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@890329 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7a8356e0fb
commit
62a047cc69
|
@ -634,10 +634,10 @@ public class StringUtils {
|
||||||
// START of 1.5 reflection - in 1.6 use the line commented out above
|
// START of 1.5 reflection - in 1.6 use the line commented out above
|
||||||
try {
|
try {
|
||||||
// get java.text.Normalizer.Form class
|
// get java.text.Normalizer.Form class
|
||||||
Class normalizerFormClass = ClassUtils.getClass("java.text.Normalizer$Form", false);
|
Class<?> normalizerFormClass = ClassUtils.getClass("java.text.Normalizer$Form", false);
|
||||||
|
|
||||||
// get Normlizer class
|
// get Normlizer class
|
||||||
Class normalizerClass = ClassUtils.getClass("java.text.Normalizer", false);
|
Class<?> normalizerClass = ClassUtils.getClass("java.text.Normalizer", false);
|
||||||
|
|
||||||
// get static method on Normalizer
|
// get static method on Normalizer
|
||||||
java.lang.reflect.Method method = normalizerClass.getMethod("normalize", CharSequence.class, normalizerFormClass );
|
java.lang.reflect.Method method = normalizerClass.getMethod("normalize", CharSequence.class, normalizerFormClass );
|
||||||
|
|
Loading…
Reference in New Issue