Skip to content

Commit 2651c7c

Browse files
committed
chore: use var at gramamanager supplier
Signed-off-by: Otavio Santana <[email protected]>
1 parent 45b5f41 commit 2651c7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jnosql-neo4j/src/main/java/org/eclipse/jnosql/databases/neo4j/mapping/GraphManagerSupplier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public Neo4JDatabaseManager get() {
4343
LOGGER.fine(() -> "Creating a Neo4JDatabaseManager bean");
4444
Settings settings = MicroProfileSettings.INSTANCE;
4545
var configuration = new Neo4JConfiguration();
46-
Neo4JDatabaseManagerFactory managerFactory = configuration.apply(settings);
46+
var managerFactory = configuration.apply(settings);
4747
var database = settings.getOrDefault("database", DATABASE_DEFAULT);
4848
LOGGER.fine(() -> "Creating a Neo4JDatabaseManager bean with database: " + database);
4949
return managerFactory.apply(database);

0 commit comments

Comments
 (0)