From 5ff917367d0cb4ed2d014d58132745b9abc04078 Mon Sep 17 00:00:00 2001 From: Kris De Volder Date: Thu, 13 Feb 2020 09:21:29 -0800 Subject: [PATCH] Fix compile error caused by moved types in boot.dash.cf --- .../manifest/ls/BootDashTargetInfoSynchronizer.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclipse-language-servers/org.springframework.tooling.cloudfoundry.manifest.ls/src/org/springframework/tooling/cloudfoundry/manifest/ls/BootDashTargetInfoSynchronizer.java b/eclipse-language-servers/org.springframework.tooling.cloudfoundry.manifest.ls/src/org/springframework/tooling/cloudfoundry/manifest/ls/BootDashTargetInfoSynchronizer.java index 12e9700ed..dacde0f80 100644 --- a/eclipse-language-servers/org.springframework.tooling.cloudfoundry.manifest.ls/src/org/springframework/tooling/cloudfoundry/manifest/ls/BootDashTargetInfoSynchronizer.java +++ b/eclipse-language-servers/org.springframework.tooling.cloudfoundry.manifest.ls/src/org/springframework/tooling/cloudfoundry/manifest/ls/BootDashTargetInfoSynchronizer.java @@ -19,11 +19,11 @@ import java.util.concurrent.atomic.AtomicBoolean; import org.springframework.ide.eclipse.boot.dash.BootDashActivator; import org.springframework.ide.eclipse.boot.dash.cf.client.ClientRequests; import org.springframework.ide.eclipse.boot.dash.cf.client.v2.DefaultClientRequestsV2; +import org.springframework.ide.eclipse.boot.dash.cf.runtarget.CfTargetsInfo; import org.springframework.ide.eclipse.boot.dash.cf.runtarget.CloudFoundryRunTarget; import org.springframework.ide.eclipse.boot.dash.cf.runtarget.CloudFoundryTargetProperties; -import org.springframework.ide.eclipse.boot.dash.cloudfoundry.CfTargetsInfo; -import org.springframework.ide.eclipse.boot.dash.cloudfoundry.CfTargetsInfo.Target; -import org.springframework.ide.eclipse.boot.dash.cloudfoundry.CfTargetsInfo.TargetDiagnosticMessages; +import org.springframework.ide.eclipse.boot.dash.cf.runtarget.CfTargetsInfo.Target; +import org.springframework.ide.eclipse.boot.dash.cf.runtarget.CfTargetsInfo.TargetDiagnosticMessages; import org.springframework.ide.eclipse.boot.dash.model.BootDashViewModel; import org.springframework.ide.eclipse.boot.dash.model.RunTarget; import org.springsource.ide.eclipse.commons.livexp.core.ValueListener;