Skip to content

Commit

Permalink
Update to Java 10
Browse files Browse the repository at this point in the history
  • Loading branch information
stroomdev66 committed Sep 7, 2018
2 parents cd0eaed + 4fc0742 commit c7c6f1f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Changed

## [v4.0.6_schema-v3.2.4] - 2018-09-05
## [v4.0.6_schema-v3.2.4] - 2018-09-07

* Update to Java 10

* Issue **6** : Fix hard coded success value in EventLoggingUtil.createOutcome().

## [v4.0.5_schema-v3.2.4] - 2018-09-05

* Added automatic module name for Java 9 builds.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public static Outcome createOutcome(final Throwable throwable) {
public static Outcome createOutcome(final Boolean success,
final String description) {
final Outcome outcome = new Outcome();
outcome.setSuccess(Boolean.FALSE);
outcome.setSuccess(success);
outcome.setDescription(description);
return outcome;
}
Expand Down

0 comments on commit c7c6f1f

Please sign in to comment.