We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dc9f2f commit e88a326Copy full SHA for e88a326
src/main/java/org/soujava/demos/arangodb/keyvalue/App.java
@@ -8,13 +8,12 @@
8
public class App {
9
10
public static void main(String[] args) {
11
- Faker faker = new Faker();
+ var faker = new Faker();
12
13
try (SeContainer container = SeContainerInitializer.newInstance().initialize()) {
14
KeyValueTemplate template = container.select(KeyValueTemplate.class).get();
15
- Airport airport = template.put(Airport.of(faker));
+ var airport = template.put(Airport.of(faker));
16
System.out.println(template.get(airport.getCode(), Airport.class));
17
-
18
}
19
20
0 commit comments