Commit 0a215a11 by Michael Koch Committed by Michael Koch

2004-05-06 Michael Koch <konqueror@gmx.de>

	* java/util/logging/Level.java
	(parse): Use == instead of String.equals().

From-SVN: r81568
parent dc884a86
2004-05-06 Michael Koch <konqueror@gmx.de>
* java/util/logging/Level.java
(parse): Use == instead of String.equals().
2004-05-06 Bryce McKinlay <mckinlay@redhat.com>
* defineclass.cc (_Jv_ClassReader::prepare_pool_entry): Use
......
......@@ -343,7 +343,7 @@ public class Level implements Serializable
for (int i = 0; i < knownLevels.length; i++)
{
if (name.equals(knownLevels[i].name))
if (name == knownLevels[i].name)
return knownLevels[i];
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment