Locale.java: Reverting my last patch and add a comment why the original version was okay.

2004-03-15  Michael Koch  <konqueror@gmx.de>

	* java/util/Locale.java: Reverting my last patch
	and add a comment why the original version was okay.

From-SVN: r79511
This commit is contained in:
Michael Koch 2004-03-15 22:04:59 +00:00 committed by Michael Koch
parent ed38d6fe91
commit 74a568a4c5
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2004-03-15 Michael Koch <konqueror@gmx.de>
* java/util/Locale.java: Reverting my last patch
and add a comment why the original version was okay.
2004-03-14 Andreas Tobler <a.tobler@schweiz.ch>
* gnu/java/nio/channels/natFileChannelPosix.cc: Implement

View File

@ -436,7 +436,8 @@ public final class Locale implements Serializable, Cloneable
*/
public String getISO3Language()
{
if (language.equals(""))
// We know all strings are interned so we can use '==' for better performance.
if (language == "")
return "";
int index
= ("aa,ab,af,am,ar,as,ay,az,ba,be,bg,bh,bi,bn,bo,br,ca,co,cs,cy,da,"
@ -472,7 +473,8 @@ public final class Locale implements Serializable, Cloneable
*/
public String getISO3Country()
{
if (country.equals(""))
// We know all strings are interned so we can use '==' for better performance.
if (country == "")
return "";
int index
= ("AD,AE,AF,AG,AI,AL,AM,AN,AO,AQ,AR,AS,AT,AU,AW,AZ,BA,BB,BD,BE,BF,"