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);