diff options
author | Michael Koch <konqueror@gmx.de> | 2005-02-22 13:02:11 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2005-02-22 13:02:11 +0000 |
commit | a010a29561f5e2db51ccda2946f0112c49523972 (patch) | |
tree | a6292178d291461e4d7cdeef5f47fcf2be86c28c /libjava/java/text/SimpleDateFormat.java | |
parent | 44f366767942717c2378f6e37415e32b6b52204c (diff) | |
download | gcc-a010a29561f5e2db51ccda2946f0112c49523972.tar.gz |
2005-02-22 Michael Koch <konqueror@gmx.de>
* java/nio/DirectByteBufferImpl.java
(owner): Fixed formatting of javadoc.
* java/text/DateFormat.java
(getAvailableLocales): Fixed formatting.
* java/text/SimpleDateFormat.java:
Fixed formatting and import statement order.
* java/util/Calendar.java
(Calendar): Fixed javadoc to be HTML compliant.
* java/util/SimpleTimeZone.java:
Fixed javadocs.
From-SVN: r95392
Diffstat (limited to 'libjava/java/text/SimpleDateFormat.java')
-rw-r--r-- | libjava/java/text/SimpleDateFormat.java | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libjava/java/text/SimpleDateFormat.java b/libjava/java/text/SimpleDateFormat.java index d8e15f2aeca..ce833b661a8 100644 --- a/libjava/java/text/SimpleDateFormat.java +++ b/libjava/java/text/SimpleDateFormat.java @@ -45,8 +45,8 @@ import gnu.java.text.FormatBuffer; import gnu.java.text.FormatCharacterIterator; import gnu.java.text.StringFormatBuffer; -import java.io.InvalidObjectException; import java.io.IOException; +import java.io.InvalidObjectException; import java.io.ObjectInputStream; import java.util.ArrayList; import java.util.Calendar; @@ -97,7 +97,8 @@ public class SimpleDateFormat extends DateFormat * @param s the size of the field. * @param c the character used. */ - public CompiledField(int f, int s, char c) { + public CompiledField(int f, int s, char c) + { field = f; size = s; character = c; @@ -169,7 +170,7 @@ public class SimpleDateFormat extends DateFormat * @see DateFormatSymbols * @serial The localisation data. May not be null. */ - private DateFormatSymbols formatData; // formatData + private DateFormatSymbols formatData; /** * The date representing the start of the century |