Skip to content

Commit

Permalink
Align to interface tweak.
Browse files Browse the repository at this point in the history
  • Loading branch information
dario-weswit committed Jun 6, 2023
1 parent 5362de7 commit a6ce28e
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import java.io.File;
import java.util.Map;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.CompletionStage;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
Expand Down Expand Up @@ -94,7 +93,7 @@ public String[] getItems(String user, String session, String id, String dataAdap
* Triggered by a client "sendMessage" call.
* The message encodes an instant message from the client.
*/
public CompletionStage<String> notifyUserMessage(String user, String session, String message)
public CompletableFuture<String> notifyUserMessage(String user, String session, String message)
throws NotificationException, CreditsException {

// we won't introduce blocking operations, hence we can proceed inline
Expand Down

0 comments on commit a6ce28e

Please sign in to comment.