Skip to content

Commit

Permalink
chore: remove unecessary semicollon
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Santana <[email protected]>
  • Loading branch information
otaviojava committed Jan 1, 2025
1 parent 0351fab commit 75c0ebb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package org.jnosql.demo.se;

public enum BaggageItemSize {
SMALL, MEDIUM, LARGE;
SMALL, MEDIUM, LARGE
}
2 changes: 1 addition & 1 deletion mongodb/src/main/java/org/jnosql/demo/se/App2.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class App2 {
public static void main(String[] args) {

try (SeContainer container = SeContainerInitializer.newInstance().initialize()) {
People people = container.select(People.class).get();;
People people = container.select(People.class).get();

var pageRequest = PageRequest.ofPage(2).size(2);
Order<Person> order = Order.by(Sort.desc("name"));
Expand Down

0 comments on commit 75c0ebb

Please sign in to comment.