Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Artur- committed Jan 13, 2025
1 parent ce450df commit 961675c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ public interface CountService {
*
* @param filter
* the filter, or {@code null} to use no filter
* @return
* the number of items in the service that match the filter
* @return the number of items in the service that match the filter
*/
public long count(@Nullable Filter filter);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/**
* A service that can create, read, update, and delete a given type of object.
*
*
* @param <T>
* the type of object to manage
* @param <ID>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

/**
* A service that can update and delete a given type of object.
*
*
* @param <T>
* the type of object to manage
* @param <ID>
* the type of the object's identifier
*
*
*/
public interface FormService<T, ID> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

/**
* A service that can list the given type of object.
*
*
* @param <T>
* the type of object to list
*/
Expand Down

0 comments on commit 961675c

Please sign in to comment.