From 345ee6070e7f2eafe18d6796ebc4d0eb946f219f Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Fri, 19 Oct 2012 17:20:41 +0200 Subject: [PATCH] Fixed a warning --- jOOQ-test/examples/org/jooq/examples/Sakila.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jOOQ-test/examples/org/jooq/examples/Sakila.java b/jOOQ-test/examples/org/jooq/examples/Sakila.java index 1999e17c42..c4bc310efc 100644 --- a/jOOQ-test/examples/org/jooq/examples/Sakila.java +++ b/jOOQ-test/examples/org/jooq/examples/Sakila.java @@ -43,8 +43,8 @@ import static org.jooq.examples.mysql.sakila.Tables.CUSTOMER; import java.sql.Connection; import java.sql.DriverManager; -import org.jooq.examples.mysql.sakila.SakilaFactory; import org.jooq.impl.Factory; +import org.jooq.util.mysql.MySQLFactory; public class Sakila { @@ -52,7 +52,7 @@ public class Sakila { Class.forName("com.mysql.jdbc.Driver"); Connection connection = DriverManager.getConnection("jdbc:mysql://localhost/sakila", "root", ""); - Factory create = new SakilaFactory(connection); + Factory create = new MySQLFactory(connection); System.out.println(create .select()