File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
PluginsAndFeatures/azure-toolkit-for-intellij/src/main/java/com/microsoft/azure/toolkit/intellij/webapp/runner/webappconfig/slimui Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2626import com .microsoft .intellij .ui .util .UIUtils ;
2727import com .microsoft .tooling .msservices .components .DefaultLoader ;
2828import org .apache .commons .compress .utils .FileNameUtils ;
29- import org .apache .commons .lang .ArrayUtils ;
29+ import org .apache .commons .lang3 .ArrayUtils ;
3030import org .apache .commons .lang3 .StringUtils ;
3131import org .jetbrains .annotations .NotNull ;
3232import org .jetbrains .idea .maven .model .MavenConstants ;
@@ -218,7 +218,7 @@ private synchronized void fillDeploymentSlots(List<IWebAppDeploymentSlot> slotLi
218218 }
219219
220220 @ Override
221- public void setData (WebAppDeployRunConfigurationModel data ) {
221+ public void setValue (WebAppDeployRunConfigurationModel data ) {
222222 // artifact
223223 Optional .ofNullable (data .getArtifactConfig ()).map (config -> AzureArtifactManager .getInstance (this .project )
224224 .getAzureArtifactById (AzureArtifactType .valueOf (config .getArtifactType ()), config .getArtifactIdentifier ()))
@@ -231,7 +231,7 @@ public void setData(WebAppDeployRunConfigurationModel data) {
231231 }
232232
233233 @ Override
234- public WebAppDeployRunConfigurationModel getData () {
234+ public WebAppDeployRunConfigurationModel getValue () {
235235 final AzureArtifact artifact = comboBoxArtifact .getValue ();
236236 final AzureArtifactConfig artifactConfig = AzureArtifactConfig .builder ().artifactType (artifact .getType ().name ())
237237 .artifactIdentifier (AzureArtifactManager .getInstance (project ).getArtifactIdentifier (artifact )).build ();
You can’t perform that action at this time.
0 commit comments