[jbosstools-commits] JBoss Tools SVN: r17608 - trunk/common/plugins/org.jboss.tools.common/src/org/jboss/tools/common.
jbosstools-commits at lists.jboss.org
jbosstools-commits at lists.jboss.org
Wed Sep 16 03:55:53 EDT 2009
Author: dgolovin
Date: 2009-09-16 03:55:52 -0400 (Wed, 16 Sep 2009)
New Revision: 17608
Modified:
trunk/common/plugins/org.jboss.tools.common/src/org/jboss/tools/common/MethodNotImplementedException.java
trunk/common/plugins/org.jboss.tools.common/src/org/jboss/tools/common/messages.properties
Log:
fix JUnit test error in CommonAllTests.testMethodNotImplementedException
Modified: trunk/common/plugins/org.jboss.tools.common/src/org/jboss/tools/common/MethodNotImplementedException.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common/src/org/jboss/tools/common/MethodNotImplementedException.java 2009-09-16 06:50:46 UTC (rev 17607)
+++ trunk/common/plugins/org.jboss.tools.common/src/org/jboss/tools/common/MethodNotImplementedException.java 2009-09-16 07:55:52 UTC (rev 17608)
@@ -17,7 +17,7 @@
public class MethodNotImplementedException extends RuntimeException {
public MethodNotImplementedException() {
- super("Method is not implemented yet"); //$NON-NLS-1$
+ super(Messages.MethodNotImplementedException_MethodIsNotImplementedYet); //$NON-NLS-1$
}
public MethodNotImplementedException(String message, Throwable cause) {
Modified: trunk/common/plugins/org.jboss.tools.common/src/org/jboss/tools/common/messages.properties
===================================================================
--- trunk/common/plugins/org.jboss.tools.common/src/org/jboss/tools/common/messages.properties 2009-09-16 06:50:46 UTC (rev 17607)
+++ trunk/common/plugins/org.jboss.tools.common/src/org/jboss/tools/common/messages.properties 2009-09-16 07:55:52 UTC (rev 17608)
@@ -4,4 +4,4 @@
SAXValidator_UnableToInstantiateMessage=error: Unable to instantiate parser ({0})
XMLUtilities_IOExceptionMessage=Unexpected parser error
XMLUtilities_SAXExceptionMessage=Unexpected parser error
-MethodNotImplementedException_MethodIsNotImplementedYet=Method is not implemented yet
+MethodNotImplementedException_MethodIsNotImplementedYet=Method is not implemented yet
More information about the jbosstools-commits
mailing list