Skip to content

Commit 44f7ea7

Browse files
committed
feat: update graph supplier
Signed-off-by: Otavio Santana <[email protected]>
1 parent 68e3e2c commit 44f7ea7

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

jnosql-tinkerpop/src/main/java/org/eclipse/jnosql/databases/tinkerpop/mapping/DefaultEdgeEntity.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,13 @@ public String label() {
6060
return edge.label();
6161
}
6262

63+
@SuppressWarnings("unchecked")
6364
@Override
6465
public I incoming() {
6566
return incoming;
6667
}
6768

69+
@SuppressWarnings("unchecked")
6870
@Override
6971
public O outgoing() {
7072
return outgoing;

jnosql-tinkerpop/src/main/java/org/eclipse/jnosql/databases/tinkerpop/mapping/configuration/GraphSupplier.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
@ApplicationScoped
3333
class GraphSupplier implements Supplier<Graph> {
3434

35+
@SuppressWarnings("unchecked")
3536
@Override
3637
@Produces
3738
@ApplicationScoped

0 commit comments

Comments
 (0)