diff options
Diffstat (limited to 'libjava/java/awt/Choice.java')
-rw-r--r-- | libjava/java/awt/Choice.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libjava/java/awt/Choice.java b/libjava/java/awt/Choice.java index c6a532a..cdfd704 100644 --- a/libjava/java/awt/Choice.java +++ b/libjava/java/awt/Choice.java @@ -74,8 +74,9 @@ private static final long serialVersionUID = -4075310674757313071L; /** * @serial A list of items for the choice box, which can be <code>null</code>. + * This is package-private to avoid an accessor method. */ -private Vector pItems = new Vector(); +Vector pItems = new Vector(); /** * @serial The index of the selected item in the choice box. |