Skip to content

Commit

Permalink
Updated detection policies for JDK 8 and 11 through Getting Started (M…
Browse files Browse the repository at this point in the history
  • Loading branch information
rat-moonshine committed Mar 11, 2021
1 parent 239716a commit 14a7a58
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,8 @@ package actionScripts.plugins.startup
private function onComponentNotDownloadedEvent(event:HelperEvent):void
{
isAllDependenciesPresent = false;
var component:ComponentVO = event.value as ComponentVO;
PathSetupHelperUtil.updateFieldPath(component.type, null);
onPostDetectionEvent(event.value as ComponentVO);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@ package actionScripts.utils
addProgramingSDK(path);
break;
case SDKTypes.OPENJAVA:
updateJavaPath(path);
updateJavaPath(path, !path ? true : false);
break;
case SDKTypes.OPENJAVA8:
updateJava8Path(path);
updateJava8Path(path, !path ? true : false);
break;
case SDKTypes.ANT:
updateAntPath(path);
Expand Down

0 comments on commit 14a7a58

Please sign in to comment.