Skip to content

Commit

Permalink
Minor change for a toString method on observer methods to only list t…
Browse files Browse the repository at this point in the history
…he declaring class now that it is available on beans.

git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@3350 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
drallen committed Jul 29, 2009
1 parent e030048 commit 77b67d6
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -238,7 +238,7 @@ public String toString()
{
StringBuilder builder = new StringBuilder();
builder.append("Observer Implementation: \n");
builder.append(" Observer (Declaring) class: " + Names.typesToString(observerBean.getTypes()));
builder.append(" Observer (Declaring) class: " + observerBean.getBeanClass());
builder.append(" Observer method: " + observerMethod);
return builder.toString();
}
Expand Down

0 comments on commit 77b67d6

Please sign in to comment.