Skip to content

Commit

Permalink
fix: create return void
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-kir-wwu committed Dec 13, 2023
1 parent 85deebd commit cb4c605
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public interface ModelControllerAPI<M extends ModelAPI> {

public Optional<M> read(Integer id);

public M create(M model);
public void create(M model);

public void update(M model);

Expand Down

0 comments on commit cb4c605

Please sign in to comment.