diff options
author | Mark Wielaard <mark@klomp.org> | 2005-07-13 23:22:30 +0000 |
---|---|---|
committer | Mark Wielaard <mark@klomp.org> | 2005-07-13 23:22:30 +0000 |
commit | 060340343dfd94be0dd68295a46be9d525db44e5 (patch) | |
tree | 1880a9be9a5614bd808315e23872beda8c15e6dc /java/text/SimpleDateFormat.java | |
parent | 21ab449df7e458702de8e8c6a96fd912b26faf5c (diff) | |
download | classpath-060340343dfd94be0dd68295a46be9d525db44e5.tar.gz |
2005-07-14 Mark Wielaard <mark@klomp.org>
* examples/gnu/classpath/examples/awt/Demo.java
(TestWindow.parent): Make package private.
* gnu/java/net/protocol/http/HTTPURLConnection.java
(proxyHostname, proxyPort, agent, keepAlive, maxConnections):
Likewise.
* java/text/SimpleDateFormat.java (field, size): Likewise.
* java/util/jar/JarFile.java (readSignatures): Likewise.
* java/util/logging/FileHandler.java (written): Likewise.
* javax/swing/plaf/basic/BasicFileChooserUI.java: Make shared
fields package private.
(closeDialog): Make package private.
(filterEntries): Likewise.
* javax/swing/plaf/basic/BasicPopupMenuUI.java
(mouseInputListener): Likewise.
* javax/swing/plaf/basic/BasicTreeUI.java
(getNextVisibleNode, getPreviousVisibleNode, selectPath): Likewise.
* javax/swing/text/JTextComponent.java (caret, editable): Likewise.
Diffstat (limited to 'java/text/SimpleDateFormat.java')
-rw-r--r-- | java/text/SimpleDateFormat.java | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/java/text/SimpleDateFormat.java b/java/text/SimpleDateFormat.java index b58d8c02f..789cb83d8 100644 --- a/java/text/SimpleDateFormat.java +++ b/java/text/SimpleDateFormat.java @@ -73,14 +73,16 @@ public class SimpleDateFormat extends DateFormat private class CompiledField { /** - * The ID of the field within the local pattern characters, + * The ID of the field within the local pattern characters. + * Package private for use in out class. */ - private int field; + int field; /** * The size of the character sequence. + * Package private for use in out class. */ - private int size; + int size; /** * The character used. |