ICU-5287 add toString to aid debugging. This is not an API change, since toString() is always defined (it just doesn't produce as useful results as one would like!)

X-SVN-Rev: 19947
This commit is contained in:
Mark Davis 2006-08-01 18:28:43 +00:00
parent acd4c98939
commit 701fc92aa2

View file

@ -1,6 +1,6 @@
/**
*******************************************************************************
* Copyright (C) 2001-2004, International Business Machines Corporation and *
* Copyright (C) 2001-2006, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
@ -63,4 +63,8 @@ public class CaseInsensitiveString {
}
return hash;
}
public String toString() {
return string;
}
}