From dcd0defbb579ee7cf3b8dc7ca2883ab3df5846b1 Mon Sep 17 00:00:00 2001 From: Chrriis Date: Sun, 26 Feb 2012 11:21:27 +0000 Subject: [PATCH] [#1177] Add SQL Console module to jOOQ - Debugger renaming. --- .../src/main/java/org/jooq/debug/console/Console.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jOOQ-sql-console/src/main/java/org/jooq/debug/console/Console.java b/jOOQ-sql-console/src/main/java/org/jooq/debug/console/Console.java index b3f2c89b1b..9cf5413432 100644 --- a/jOOQ-sql-console/src/main/java/org/jooq/debug/console/Console.java +++ b/jOOQ-sql-console/src/main/java/org/jooq/debug/console/Console.java @@ -147,7 +147,7 @@ public class Console extends JFrame { centerPane.setBorder(BorderFactory.createEmptyBorder(20, 20, 20, 20)); centerPane.add(new JLabel("jOOQ library: "), new GridBagConstraints(0, 0, 1, 1, 0, 0, GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, new Insets(0, 0, 0, 0), 0, 0)); centerPane.add(new JLabel("Lukas Eder"), new GridBagConstraints(1, 0, 1, 1, 0, 0, GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, new Insets(0, 0, 0, 0), 0, 0)); - centerPane.add(new JLabel("SQL Console: "), new GridBagConstraints(0, 1, 1, 1, 0, 0, GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, new Insets(5, 0, 0, 0), 0, 0)); + centerPane.add(new JLabel("jOOQ Console: "), new GridBagConstraints(0, 1, 1, 1, 0, 0, GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, new Insets(5, 0, 0, 0), 0, 0)); centerPane.add(new JLabel("Christopher Deckers"), new GridBagConstraints(1, 1, 1, 1, 0, 0, GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, new Insets(5, 0, 0, 0), 0, 0)); centerPane.add(new JLabel("License: "), new GridBagConstraints(0, 2, 1, 1, 0, 0, GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, new Insets(5, 0, 0, 0), 0, 0)); centerPane.add(new JLabel("Apache License, Version 2.0"), new GridBagConstraints(1, 2, 1, 1, 0, 0, GridBagConstraints.CENTER, GridBagConstraints.HORIZONTAL, new Insets(5, 0, 0, 0), 0, 0));