summaryrefslogtreecommitdiff
path: root/platform/core-impl/src/com/intellij/openapi/components/impl/ComponentManagerImpl.java
diff options
context:
space:
mode:
Diffstat (limited to 'platform/core-impl/src/com/intellij/openapi/components/impl/ComponentManagerImpl.java')
-rw-r--r--platform/core-impl/src/com/intellij/openapi/components/impl/ComponentManagerImpl.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/platform/core-impl/src/com/intellij/openapi/components/impl/ComponentManagerImpl.java b/platform/core-impl/src/com/intellij/openapi/components/impl/ComponentManagerImpl.java
index 7a0e77707300..6d280a5e11af 100644
--- a/platform/core-impl/src/com/intellij/openapi/components/impl/ComponentManagerImpl.java
+++ b/platform/core-impl/src/com/intellij/openapi/components/impl/ComponentManagerImpl.java
@@ -611,5 +611,10 @@ public abstract class ComponentManagerImpl extends UserDataHolderBase implements
visitor.visitComponentAdapter(this);
myDelegate.accept(visitor);
}
+
+ @Override
+ public String toString() {
+ return "ComponentConfigAdapter[" + getComponentKey() + "]: implementation=" + getComponentImplementation() + ", plugin=" + myConfig.getPluginId();
+ }
}
}