Skip to content

Commit

Permalink
fix: fix a typo in Gradle interfaces (method named geOptions, with a …
Browse files Browse the repository at this point in the history
…missing T) #240 (#242)
  • Loading branch information
flelli authored Jul 28, 2023
1 parent 57e8b58 commit 1591108
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Nyx Release Notes

## 2.4.7

This release is available at [this link](https://github.com/mooltiverse/nyx/releases/tag/2.4.7).

### Upgrade instructions

There are no actions to take for backward compatibility.

### New features and improvements

There are no new features or improvements in this release.

### Fixed issues

This release:

* fixes a typo Java Gradle interfaces ([#240](https://github.com/mooltiverse/nyx/issues/240))

## 2.4.6

This release is available at [this link](https://github.com/mooltiverse/nyx/releases/tag/2.4.6).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ public Map<String,ServiceConfiguration> getServices()
throw new IllegalPropertyException(String.format("Service '%s' has no type", service.getName()));
servicesSection.put(service.getName(), new ServiceConfiguration(
Provider.valueOf(service.getType().get()),
service.geOptions().isPresent() ? service.geOptions().get() : Map.<String,String>of()
service.getOptions().isPresent() ? service.getOptions().get() : Map.<String,String>of()
));
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1837,7 +1837,7 @@ public Property<String> getType() {
*
* @return the map of service options.
*/
public MapProperty<String,String> geOptions() {
public MapProperty<String,String> getOptions() {
return options;
}

Expand Down

0 comments on commit 1591108

Please sign in to comment.