|
From: Dave B. <bla...@us...> - 2012-09-13 09:29:27
|
Update of /cvsroot/sblim/jsr48-client/src/javax/wbem
In directory vz-cvs-3.sog:/tmp/cvs-serv23726/src/javax/wbem
Modified Files:
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.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- WBEMException.java 14 Mar 2012 10:39:53 -0000 1.14
+++ WBEMException.java 13 Sep 2012 09:29:24 -0000 1.15
@@ -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.
*
|