Skip to content

Commit

Permalink
remove unecessary code
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
  • Loading branch information
otaviojava committed Jan 13, 2023
1 parent 5e27486 commit 20773ff
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 78 deletions.
33 changes: 0 additions & 33 deletions api/nosql-core/src/main/java/jakarta/nosql/Converters.java

This file was deleted.

This file was deleted.

2 changes: 0 additions & 2 deletions api/nosql-core/src/main/java/jakarta/nosql/Template.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ public interface Template {
* @param <K> the id type
* @return the entity instance otherwise {@link Optional#empty()}
* @throws NullPointerException when either the type or id are null
* @throws IdNotFoundException when the type does not have the Id annotation
*/
<T, K> Optional<T> find(Class<T> type, K id);

Expand All @@ -112,7 +111,6 @@ public interface Template {
* @param <T> the entity class type
* @param <K> the id type
* @throws NullPointerException when either the type or id are null
* @throws IdNotFoundException when the type does not have the Id annotation
*/
<T, K> void delete(Class<T> type, K id);

Expand Down

0 comments on commit 20773ff

Please sign in to comment.