Skip to content

Commit

Permalink
style: remove unsed imports
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Santana <[email protected]>
  • Loading branch information
otaviojava committed Nov 26, 2024
1 parent d8ce12b commit b88962e
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/soujava/samples/hotel/GreetResource.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class GreetResource {

/**
* Using constructor injection to get a configuration property.
* By default this gets the value from META-INF/microprofile-config
* By default, this gets the value from META-INF/microprofile-config
*
* @param greetingConfig the configured greeting message
*/
Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/soujava/samples/hotel/Guest.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import jakarta.nosql.Column;
import jakarta.nosql.Embeddable;
import jakarta.nosql.Entity;

@Embeddable(Embeddable.EmbeddableType.GROUPING)
public record Guest (@Column String documentNumber, @Column String name) {
Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/soujava/samples/hotel/Hotel.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import jakarta.data.repository.Repository;
import jakarta.data.repository.Save;

import java.util.List;
import java.util.Optional;

@Repository
Expand Down

0 comments on commit b88962e

Please sign in to comment.