Revision: 5930
http://squirrel-sql.svn.sourceforge.net/squirrel-sql/?rev=5930&view=rev
Author: gerdwagner
Date: 2010-10-25 20:10:17 +0000 (Mon, 25 Oct 2010)
Log Message:
-----------
3085119: NullPointerException when adding tables to graph.
Modified Paths:
--------------
trunk/sql12/doc/src/main/resources/changes.txt
trunk/sql12/plugins/graph/src/main/java/net/sourceforge/squirrel_sql/plugins/graph/TableFrameController.java
Modified: trunk/sql12/doc/src/main/resources/changes.txt
===================================================================
--- trunk/sql12/doc/src/main/resources/changes.txt 2010-10-25 19:43:39 UTC (rev 5929)
+++ trunk/sql12/doc/src/main/resources/changes.txt 2010-10-25 20:10:17 UTC (rev 5930)
@@ -40,6 +40,8 @@
Bug-fixes:
+3085119: NullPointerException when adding tables to graph.
+
3088284: CSV export doesn't escape quotes. Thanks to wolfgang22 for the patch.
3086444: Date/Time/Timestamp types did not display right after application restart when others than standard
formats were chosen in Global Prefs. (See patch 3087989)
Modified: trunk/sql12/plugins/graph/src/main/java/net/sourceforge/squirrel_sql/plugins/graph/TableFrameController.java
===================================================================
--- trunk/sql12/plugins/graph/src/main/java/net/sourceforge/squirrel_sql/plugins/graph/TableFrameController.java 2010-10-25 19:43:39 UTC (rev 5929)
+++ trunk/sql12/plugins/graph/src/main/java/net/sourceforge/squirrel_sql/plugins/graph/TableFrameController.java 2010-10-25 20:10:17 UTC (rev 5930)
@@ -59,7 +59,7 @@
private TableFrame _frame;
private ColumnInfo[] _colInfos;
- private ConstraintView[] _constraintViews;
+ private ConstraintView[] _constraintViews =new ConstraintView[0];
private String[] _tablesExportedTo;
//
///////////////////////////////////////////
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|