Skip to content

Commit

Permalink
devonfw#1454 renamed artifact cache
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-vcapgemini committed Mar 14, 2023
1 parent 48a2b32 commit 776aee9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ public static List<TemplateSet> retrieveTemplateSetData(List<Path> templateSetFi
}

/**
* Retrieves a list of {@link TemplateSetConfiguration} from the template-set-list folder
* Retrieves a list of {@link TemplateSetConfiguration} from the template set artifact cache
*
* @return List of {@link TemplateSetConfiguration}
*/
public static List<TemplateSetConfiguration> retrieveArtifactsFromCobiGen() {
public static List<TemplateSetConfiguration> retrieveArtifactsFromCache() {

Path templateSetFolder = CobiGenPaths.getTemplateSetsFolderPath();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public void testInstallTemplateSet() throws Exception {
StandardCopyOption.REPLACE_EXISTING);

withEnvironmentVariable(ConfigurationConstants.CONFIG_ENV_HOME, userHome.getAbsolutePath()).execute(() -> {
List<TemplateSetConfiguration> templateSetConfigurations = ArtifactRetriever.retrieveArtifactsFromCobiGen();
List<TemplateSetConfiguration> templateSetConfigurations = ArtifactRetriever.retrieveArtifactsFromCache();

// pass TemplateSetConfigurations to GUI
this.templateSetObservableList = FXCollections.observableArrayList();
Expand Down

0 comments on commit 776aee9

Please sign in to comment.