Skip to content

Commit

Permalink
Remove several redundant suppression comments (#545)
Browse files Browse the repository at this point in the history
  • Loading branch information
sleberknight authored Apr 13, 2021
1 parent e622a01 commit bba7619
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ private void verifyAndAssertWhenBuildingManagedDataSource(String healthCheckName
verify(environment, times(2)).metrics();
verify(environment).lifecycle();
verify(environment).healthChecks();
//noinspection ResultOfMethodCallIgnored
verify(environment).getHealthCheckExecutorService();

var managedClasses = lifecycleEnvironment.getManagedObjects()
Expand Down Expand Up @@ -238,7 +237,6 @@ private void verifyAndAssertWhenGivenAManagedDataSource(ManagedDataSource manage
verify(environment).metrics();
verify(environment).lifecycle();
verify(environment).healthChecks();
//noinspection ResultOfMethodCallIgnored
verify(environment).getHealthCheckExecutorService();

var managedObjects = lifecycleEnvironment.getManagedObjects()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ void shouldCompareUsingObjectsEquals(SoftAssertions softly) {

@Test
void shouldThrowIllegalArgumentException_GivenNullObject() {
//noinspection ResultOfMethodCallIgnored
assertThatIllegalArgumentException()
.isThrownBy(() -> jsonbUserType.hashCode(null));
}
Expand Down

0 comments on commit bba7619

Please sign in to comment.