Skip to content

Commit

Permalink
better toString
Browse files Browse the repository at this point in the history
  • Loading branch information
pmuir committed Aug 11, 2010
1 parent 34b144f commit 0e91e20
Showing 1 changed file with 6 additions and 2 deletions.
Expand Up @@ -20,8 +20,6 @@
import java.io.Serializable;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

import javax.enterprise.context.spi.Contextual;

import org.jboss.weld.context.api.ContextualInstance;

Expand Down Expand Up @@ -55,5 +53,11 @@ public Map<String, ContextualInstance<? extends Object>> delegate()
{
return delegate;
}

@Override
public String toString()
{
return "contextuals " + delegate;
}

}

0 comments on commit 0e91e20

Please sign in to comment.