Update of /cvsroot/sblim/jsr48-client/src/javax/wbem
In directory vz-cvs-3.sog:/tmp/cvs-serv8059/src/javax/wbem
Modified Files:
Tag: Experimental
WBEMException.java
Log Message:
3565581 - TCK: remove unnecessary overriding methods
Index: WBEMException.java
===================================================================
RCS file: /cvsroot/sblim/jsr48-client/src/javax/wbem/WBEMException.java,v
retrieving revision 1.3.2.11
retrieving revision 1.3.2.12
diff -u -d -r1.3.2.11 -r1.3.2.12
--- WBEMException.java 2 Mar 2012 17:58:10 -0000 1.3.2.11
+++ WBEMException.java 7 Sep 2012 16:40:31 -0000 1.3.2.12
@@ -23,6 +23,7 @@
* 2959039 2010-02-25 blaschke-oss Fix WBEMException.toString() logic
* 3490032 2012-02-21 blaschke-oss TCK: WBEMException must validate error ID
* 3496301 2012-03-02 blaschke-oss Sync up javax.* javadoc with JSR48 1.0.0 Final
+ * 3565581 2012-09-07 blaschke-oss TCK: remove unnecessary overriding methods
*/
package javax.wbem;
@@ -330,16 +331,6 @@
return this.iErrorID;
}
- /*
- * (non-Javadoc)
- *
- * @see java.lang.Throwable#getMessage()
- */
- @Override
- public String getMessage() {
- return super.getMessage() != null ? super.getMessage() : getCIMMessage();
- }
-
/**
* Prints out the ID and the optional detailed message.
*
|