# HG changeset patch # User timkelly # Date 1276708183 18000 # Node ID f4dfa2236dcf04d5ac774537bcacb4ff74d4e616 # Parent 09e768e53db59fca0fdfa636f76ae71250b9097e fix problem with sbsv2 context equals (ignore case on platform and target) diff -r 09e768e53db5 -r f4dfa2236dcf core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/BuildContextSBSv2.java --- a/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/BuildContextSBSv2.java Wed Jun 16 11:49:20 2010 -0500 +++ b/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/BuildContextSBSv2.java Wed Jun 16 12:09:43 2010 -0500 @@ -313,19 +313,19 @@ if (sbsv2Alias == null) { if (other.sbsv2Alias != null) return false; - } else if (!sbsv2Alias.equals(other.sbsv2Alias)) + } else if (!sbsv2Alias.equalsIgnoreCase(other.sbsv2Alias)) return false; if (getSDK() == null) { if (other.getSDK() != null) return false; - } else if (!getSDK().getEPOCROOT().equals(other.getSDK().getEPOCROOT())) + } else if (!getSDK().getEPOCROOT().equalsIgnoreCase(other.getSDK().getEPOCROOT())) return false; if (target == null) { if (other.target != null) return false; - } else if (!target.equals(other.target)) { + } else if (!target.equalsIgnoreCase(other.target)) { return false; - } else if (!configID.equals(other.configID)){ + } else if (!configID.equalsIgnoreCase(other.configID)){ // TODO: Do we really need anything other than a config ID comparison? return false; }