Skip to content

Commit

Permalink
Better error message
Browse files Browse the repository at this point in the history
git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@3227 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
pmuir committed Jul 25, 2009
1 parent de13f3b commit e4ca355
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion impl/src/main/java/org/jboss/webbeans/Validator.java
Expand Up @@ -215,7 +215,7 @@ private void validateDisposalMethods(BeanDeployerEnvironment environment)
if (all.size() > 0 && !resolved.containsAll(all))
{
StringBuffer buff = new StringBuffer();
buff.append("The following Disposal methods where not resolved\n");
buff.append("The following Disposal methods where not declared but not resolved to a producer method\n");
all.removeAll(resolved);
for (DisposalMethodBean<?> bean : all)
{
Expand Down

0 comments on commit e4ca355

Please sign in to comment.