Skip to content

Commit

Permalink
Convert interface into an abstract class
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideD committed Oct 31, 2023
1 parent fb38d3a commit 9cbaa30
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

import io.smallrye.mutiny.Uni;

public final class DefaultUniAsserter implements UnwrappableUniAsserter {
public final class DefaultUniAsserter extends UnwrappableUniAsserter {

private final ConcurrentMap<String, Object> data;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
* </pre>
*
*/
public abstract class UniAsserterInterceptor implements UnwrappableUniAsserter {
public abstract class UniAsserterInterceptor extends UnwrappableUniAsserter {

private final UniAsserter delegate;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
* We've added this interface so that we don't expose the method {@link #asUni()} to the user
* </p>
*/
public interface UnwrappableUniAsserter extends UniAsserter {
abstract class UnwrappableUniAsserter implements UniAsserter {

/**
* @return a {@link Uni} representing the operations pipeline up to this point
*/
Uni<?> asUni();
abstract Uni<?> asUni();
}

0 comments on commit 9cbaa30

Please sign in to comment.