From 5f72c6080f08de26a0204a3f7b6277ec05287d70 Mon Sep 17 00:00:00 2001 From: lukaseder Date: Fri, 17 Feb 2017 09:46:10 +0100 Subject: [PATCH] [#5881] Added test to example --- jOOQ-examples/jOOQ-javafx-example/pom.xml | 4 ++++ .../src/main/java/org/jooq/example/javafx/BarChartSample.java | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/jOOQ-examples/jOOQ-javafx-example/pom.xml b/jOOQ-examples/jOOQ-javafx-example/pom.xml index 390b8b7076..260aa6f5f6 100644 --- a/jOOQ-examples/jOOQ-javafx-example/pom.xml +++ b/jOOQ-examples/jOOQ-javafx-example/pom.xml @@ -184,10 +184,14 @@ WORLD + + + diff --git a/jOOQ-examples/jOOQ-javafx-example/src/main/java/org/jooq/example/javafx/BarChartSample.java b/jOOQ-examples/jOOQ-javafx-example/src/main/java/org/jooq/example/javafx/BarChartSample.java index fa872ab3f6..0593cd19c7 100644 --- a/jOOQ-examples/jOOQ-javafx-example/src/main/java/org/jooq/example/javafx/BarChartSample.java +++ b/jOOQ-examples/jOOQ-javafx-example/src/main/java/org/jooq/example/javafx/BarChartSample.java @@ -37,7 +37,7 @@ package org.jooq.example.javafx; import static java.util.stream.Collectors.toList; import static javafx.collections.FXCollections.observableArrayList; -import static org.jooq.example.db.h2.Tables.COUNTRIES; +import static org.jooq.generated.Tables.COUNTRIES; import static org.jooq.impl.DSL.avg; import static org.jooq.impl.DSL.field; import static org.jooq.impl.DSL.name; @@ -55,8 +55,8 @@ import org.jooq.Record; import org.jooq.Table; import org.jooq.TableField; import org.jooq.conf.Settings; -import org.jooq.example.db.h2.tables.records.CountriesRecord; import org.jooq.exception.DataAccessException; +import org.jooq.generated.tables.records.CountriesRecord; import org.jooq.impl.DSL; import org.jooq.tools.jdbc.JDBCUtils;