* not part of tbox build *

fix for 56841


git-svn-id: svn://10.0.0.236/trunk@81253 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
idk%eng.sun.com
2000-10-16 19:24:51 +00:00
parent 928b7123e2
commit 1beb004422

View File

@@ -23,7 +23,7 @@ package org.mozilla.xpcom;
public class IID {
public IID(String iid) {
this.iid = (iid == null) ? "" : iid;
this.iid = ((iid == null) ? "" : iid).toLowerCase();;
}
public boolean equals(Object obj) {
if (! (obj instanceof IID)) {