We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0389f57 commit db2f6dcCopy full SHA for db2f6dc
impl/src/main/java/org/jboss/weld/contexts/SerializableContextualInstanceImpl.java
@@ -59,7 +59,8 @@ public CreationalContext<I> getCreationalContext() {
59
60
@Override
61
public String toString() {
62
- return "Bean: " + contextual + "; Instance: " + instance + "; CreationalContext: " + creationalContext;
+ return "Bean: " + contextual + "; Instance: " + instance.getClass().getName() + "@"
63
+ + Integer.toHexString(instance.hashCode()) + "; CreationalContext: " + creationalContext;
64
}
65
66
0 commit comments