Update of /cvsroot/sblim/jsr48-client/src/javax/cim
In directory vz-cvs-3.sog:/tmp/cvs-serv12055/src/javax/cim
Modified Files:
Tag: Experimental
CIMObjectPath.java
Log Message:
3510090 - Fix CIMObjectPath.toString() inconsistencies
Index: CIMObjectPath.java
===================================================================
RCS file: /cvsroot/sblim/jsr48-client/src/javax/cim/CIMObjectPath.java,v
retrieving revision 1.11.2.16
retrieving revision 1.11.2.17
diff -u -d -r1.11.2.16 -r1.11.2.17
--- CIMObjectPath.java 2 Mar 2012 19:01:53 -0000 1.11.2.16
+++ CIMObjectPath.java 23 Mar 2012 16:44:46 -0000 1.11.2.17
@@ -27,6 +27,7 @@
* 2975975 2010-03-24 blaschke-oss TCK: CIMObjectPath(String) does not handle null
* 3023141 2010-07-01 blaschke-oss CIMObjectPath uses # constructor instead of valueOf
* 3496349 2012-03-02 blaschke-oss JSR48 1.0.0: add CIMObjectPath getKeyValue
+ * 3510090 2012-03-23 blaschke-oss Fix CIMObjectPath.toString() inconsistencies
*/
package javax.cim;
@@ -665,7 +666,7 @@
*/
@Override
public String toString() {
- return MOF.objectHandle(this, false, true);
+ return MOF.objectHandle(this, false, false);
}
}
|