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

* java/util/prefs/AbstractPreferences.java
	(AbstractPreferences): Added parenthesis for clarity.
	Closes classpath bug #7940.

From-SVN: r81515
This commit is contained in:
Michael Koch 2004-05-05 08:47:37 +00:00 committed by Michael Koch
parent 2e592dceb5
commit 4a93a22629
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2004-05-05 Michael Koch <konqueror@gmx.de>
* java/util/prefs/AbstractPreferences.java
(AbstractPreferences): Added parenthesis for clarity.
Closes classpath bug #7940.
2004-05-05 Tom Tromey <tromey@redhat.com>
* javax/naming/CompoundName.java (endsWith): Look at correct

View File

@ -119,7 +119,7 @@ public abstract class AbstractPreferences extends Preferences {
throw new IllegalArgumentException("Illegal name argument '"
+ name
+ "' (parent is "
+ parent == null ? "" : "not "
+ (parent == null ? "" : "not ")
+ "null)");
this.parent = parent;
this.name = name;