diff options
author | Tom Tromey <tromey@redhat.com> | 2006-04-25 23:11:39 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2006-04-25 23:11:39 +0000 |
commit | 4d80ae24073737202d4c51bf9efd2466fea8696d (patch) | |
tree | beea68891564dc07f1af31bca71223545306cdc5 /javax/swing/tree/FixedHeightLayoutCache.java | |
parent | 20e068305d518803066352dd245f08dac5612656 (diff) | |
download | classpath-4d80ae24073737202d4c51bf9efd2466fea8696d.tar.gz |
* javax/swing/JComboBox.java (AccessibleJComboBox): Now public.
* javax/swing/tree/VariableHeightLayoutCache.java
(getVisiblePathsFrom): Genericized.
* javax/swing/tree/FixedHeightLayoutCache.java (getVisiblePathsFrom):
Genericized.
Diffstat (limited to 'javax/swing/tree/FixedHeightLayoutCache.java')
-rw-r--r-- | javax/swing/tree/FixedHeightLayoutCache.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/javax/swing/tree/FixedHeightLayoutCache.java b/javax/swing/tree/FixedHeightLayoutCache.java index cb637c0df..c4cc560fc 100644 --- a/javax/swing/tree/FixedHeightLayoutCache.java +++ b/javax/swing/tree/FixedHeightLayoutCache.java @@ -390,7 +390,7 @@ public class FixedHeightLayoutCache * @param parentPath the parent path * @return the enumeration over pathes */ - public Enumeration getVisiblePathsFrom(TreePath parentPath) + public Enumeration<TreePath> getVisiblePathsFrom(TreePath parentPath) { if (dirty) update(); |