You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by mj...@apache.org on 2009/08/18 08:52:55 UTC

svn commit: r805293 - /mina/sandbox/vysper/trunk/demo/pubsub/client/src/main/java/org/apache/vysper/demo/pubsub/client/PubsubClientGUI.java

Author: mjakl
Date: Tue Aug 18 06:52:55 2009
New Revision: 805293

URL: http://svn.apache.org/viewvc?rev=805293&view=rev
Log:
Removed setFillsViewportHeight to make the sources JDK5 compatible.

Modified:
    mina/sandbox/vysper/trunk/demo/pubsub/client/src/main/java/org/apache/vysper/demo/pubsub/client/PubsubClientGUI.java

Modified: mina/sandbox/vysper/trunk/demo/pubsub/client/src/main/java/org/apache/vysper/demo/pubsub/client/PubsubClientGUI.java
URL: http://svn.apache.org/viewvc/mina/sandbox/vysper/trunk/demo/pubsub/client/src/main/java/org/apache/vysper/demo/pubsub/client/PubsubClientGUI.java?rev=805293&r1=805292&r2=805293&view=diff
==============================================================================
--- mina/sandbox/vysper/trunk/demo/pubsub/client/src/main/java/org/apache/vysper/demo/pubsub/client/PubsubClientGUI.java (original)
+++ mina/sandbox/vysper/trunk/demo/pubsub/client/src/main/java/org/apache/vysper/demo/pubsub/client/PubsubClientGUI.java Tue Aug 18 06:52:55 2009
@@ -63,7 +63,7 @@
 
         JTable nodeTable = new JTable(tableModel);
         JScrollPane scrollPane = new JScrollPane(nodeTable);
-        nodeTable.setFillsViewportHeight(true);
+        //nodeTable.setFillsViewportHeight(true);
         nodeTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
         ListSelectionModel lsm = nodeTable.getSelectionModel();
         lsm.addListSelectionListener(this);