Author: mcombellack
Date: Mon May 19 03:31:20 2008
New Revision: 657782
URL: http://svn.apache.org/viewvc?rev=657782&view=rev
Log:
Fixed spelling mistake in the exception message
Modified:
incubator/tuscany/java/sca/modules/implementation-java/src/main/java/org/apache/tuscany/sca/implementation/java/introspect/impl/ConstructorProcessor.java
Modified:
incubator/tuscany/java/sca/modules/implementation-java/src/main/java/org/apache/tuscany/sca/implementation/java/introspect/impl/ConstructorProcessor.java
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/implementation-java/src/main/java/org/apache/tuscany/sca/implementation/java/introspect/impl/ConstructorProcessor.java?rev=657782&r1=657781&r2=657782&view=diff
==============================================================================
---
incubator/tuscany/java/sca/modules/implementation-java/src/main/java/org/apache/tuscany/sca/implementation/java/introspect/impl/ConstructorProcessor.java
(original)
+++
incubator/tuscany/java/sca/modules/implementation-java/src/main/java/org/apache/tuscany/sca/implementation/java/introspect/impl/ConstructorProcessor.java
Mon May 19 03:31:20 2008
@@ -73,7 +73,7 @@
String[] value = annotation.value();
boolean isDefault = value.length == 0 || (value.length == 1 &&
"".equals(value[0]));
if (!isDefault && value.length != parameters.length) {
- throw new InvalidConstructorException("Invalid Nubmer of names in
@Constructor");
+ throw new InvalidConstructorException("Invalid Number of names in
@Constructor");
}
for (int i = 0; i < parameters.length; i++) {
parameters[i].setName(i < value.length ? value[i] : "");