From 4ba80ecf2c4afc8ddb43541ba19369089f1b78df Mon Sep 17 00:00:00 2001 From: Vladimir Krivosheev Date: Thu, 17 Oct 2019 07:10:29 +0200 Subject: [PATCH] remove debug logging GitOrigin-RevId: e468fef248eca1cfe5efabae1530ef317aa9efd7 --- platform/configuration-store-impl/src/ComponentStoreImpl.kt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/platform/configuration-store-impl/src/ComponentStoreImpl.kt b/platform/configuration-store-impl/src/ComponentStoreImpl.kt index 35b33ca21965..2019a96413d8 100644 --- a/platform/configuration-store-impl/src/ComponentStoreImpl.kt +++ b/platform/configuration-store-impl/src/ComponentStoreImpl.kt @@ -343,11 +343,6 @@ abstract class ComponentStoreImpl : IComponentStore { private fun doAddComponent(name: String, component: Any, stateSpec: State?, serviceDescriptor: ServiceDescriptor?): ComponentInfo { val newInfo = createComponentInfo(component, stateSpec, serviceDescriptor) val existing = components.put(name, newInfo) - - if (name == "GradleSettings") { - LOG.info("hi") - } - if (existing != null && existing.component !== component) { components.put(name, existing) LOG.error("Conflicting component name '$name': ${existing.component.javaClass} and ${component.javaClass} (componentManager=${storageManager.componentManager})")