Skip to content

Commit

Permalink
Remove redundant interface method modifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
stevejagodzinski committed Oct 25, 2021
1 parent e1f368d commit f5e29b6
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,16 @@ public class HttpEventCollectorMiddleware {
* An interface that describes an abstract events sender working asynchronously.
*/
public interface IHttpSender {
public void postEvents(final List<HttpEventCollectorEventInfo> events,
IHttpSenderCallback callback);
void postEvents(final List<HttpEventCollectorEventInfo> events,
IHttpSenderCallback callback);
}

/**
* Callback methods invoked by events sender.
*/
public interface IHttpSenderCallback {
public void completed(int statusCode, final String reply);
public void failed(final Exception ex);
void completed(int statusCode, final String reply);
void failed(final Exception ex);
}

/**
Expand Down

0 comments on commit f5e29b6

Please sign in to comment.