Tom Tromey
ecd16bf665
re PR java/14446 (GZIPInputStream: corrupted gzip file - crc mismatch)
...
PR libgcj/14446:
* java/util/zip/GZIPInputStream.java (read): Avoid sign extension
when comparing CRCs.
* java/util/zip/InflaterInputStream.java (onebytebuffer): New
field.
(read()): New overload.
From-SVN: r87882
2004-09-22 20:16:17 +00:00
Mark Wielaard
d23cb2291b
TreeMap.java (root): Don't initialize.
...
2004-09-21 Mark Wielaard <mark@klomp.org >
* java/util/TreeMap.java (root): Don't initialize.
(TreeMap(Comparator)): Call fabricateTree(0).
(fabricateTree): Initialize root and size when count is 0.
From-SVN: r87811
2004-09-21 18:27:30 +02:00
Andreas Tobler
4166b03640
[multiple changes]
...
2004-09-09 Michael Koch <konqueror@gmx.de >
* java/security/ProtectionDomain.java,
* java/util/PropertyPermissionCollection.java:
Fixed javadocs all over.
2004-09-09 Sven de Marothy <sven@physto.se >
Patch from David Gilbert <david.gilbert@object-refinery.com >
* java/lang/Comparable.java: Fixed documentation errors.
* java/util/Arrays.java: Likewise.
2004-09-09 Andrew John Hughes <gnu_andrew@member.fsf.org >
* java/net/Inet4Address.java
(Inet4Address): Added comment to serialization UID.
* java/text/Format.java
(Format): Added comment to serialization UID.
From-SVN: r87248
2004-09-09 21:44:07 +02:00
Mark Wielaard
6cd655a302
2004-08-29 Mark Wielaard <mark@klomp.org>
...
* java/util/Arrays.java
(sort(byte[], int, int)): Check fromIndex < 0.
(sort(char[], int, int)): Likewise.
(sort(short[], int, int)): Likewise.
(sort(int[], int, int)): Likewise.
(sort(long[], int, int)): Likewise.
(sort(float[], int, int)): Likewise.
(sort(double[], int, int)): Likewise.
(sort(Object[], int, int, Comparator)): Likewise.
(qsort(byte[], int, int)): Honor lower bound from in insertion sort.
(qsort(char[], int, int)): Likewise.
(qsort(short[], int, int)): Likewise.
(qsort(int[], int, int)): Likewise.
(qsort(long[], int, int)): Likewise.
(qsort(float[], int, int)): Likewise.
(qsort(double[], int, int)): Likewise.
From-SVN: r86734
2004-08-29 22:16:22 +02:00
Andrew John Hughes
477a21f7f9
AbstractCollection.java, [...]: Added additional exceptions to documentation...
...
2004-08-29 Andrew John Hughes <gnu_andrew@member.fsf.org >
* java/util/AbstractCollection.java, java/util/AbstractList.java,
java/util/AbstractMap.java, java/util/AbstractSequentialList.java,
java/util/ArrayList.java, java/util/Arrays.java,
java/util/BitSet.java, java/util/Calendar.java,
java/util/Collection.java, java/util/ListIterator.java,
java/util/Map.java, java/util/SortedSet.java:
Added additional exceptions to documentation, along
with some additions and corrections.
From-SVN: r86730
2004-08-29 19:28:09 +02:00
Mark Wielaard
4234810174
re PR libgcj/17002 (java.util.TimeZone.getDefault() is broken)
...
2004-08-26 Mark Wielaard <mark@klomp.org >
Fixes PR libgcj/17002:
* java/util/TimeZone.java (defaultZone): Try a couple of ways to get
a TimeZoneId string and then try to convert that to a TimeZone with
getDefaultSystemTimeZone(String).
(timezones0): Changed type from Hashtable to HashMap.
(timezones): Create HashMap, not Hashtable.
(getDefaultTimeZone): New method, rewritten from CNI version.
(readTimeZoneFile): New method.
(readtzFile): Likewise.
(skipFully): Likewise.
* java/util/natTimeZone.cc (getSystemTimeZone): Renamed to
getDefaultTimeZoneId and rewritten.
(getDefaultTimeZoneId): Rewritten in java.
From-SVN: r86623
2004-08-26 16:10:54 +00:00
Bryce McKinlay
b4b3435ecc
re PR libgcj/17079 ([PATCH] Log messages whose logging level is equal to the threshold discarded by java.util.logging.Handler)
...
2004-08-18 Bryce McKinlay <mckinlay@redhat.com >
PR libgcj/17079
* java/util/logging/Handler.java (isLoggable): Accept record if its
log level equals the threshold level. From Robin Green.
From-SVN: r86187
2004-08-18 16:51:47 +01:00
Andrew John Hughes
b828123e23
Collection.java, [...]: Added additional exceptions to documentation.
...
2004-08-01 Andrew John Hughes <gnu_andrew@member.fsf.org >
* java/util/Collection.java, java/util/List.java,
java/util/Map.java, java/util/Set.java,
java/util/SortedMap.java, java/util/SortedSet.java:
Added additional exceptions to documentation.
From-SVN: r85403
2004-08-01 11:14:42 +00:00
Michael Koch
f370ef24f4
2004-07-30 Michael Koch <konqueror@gmx.de>
...
* java/util/zip/GZIPInputStream.java
(GZIPInputStream): Increase buffer size to 4k.
* java/util/zip/GZIPOutputStream.java
(GZIPOutputStream): Likewise.
* java/util/zip/Inflater.java
(setInput): Merged formating with GNU classpath.
* java/util/zip/InflaterInputStream.java
(InflaterInputStream): Increase buffer size to 4k.
(fill): Throw exception if stream ends early.
(read): Merged endless-loop with GNU classpath.
(skip): Increase buffer size to 2k.
From-SVN: r85340
2004-07-30 17:00:34 +00:00
Bryce McKinlay
3ee7acd137
java.util.Calendar.java (cache): New private static field.
...
2004-07-09 Bryce McKinlay <mckinlay@redhat.com >
* java.util.Calendar.java (cache): New private static field. Cached
mappings of locales->calendar classes.
(ctorArgTypes): New private static field. Singleton argument for
calendar class constructor lookup.
(getInstance): Cache Locale->Calendar class mappings using HashMap.
Optimize by bypassing reflection instantiation for the
GregorianCalendar case.
From-SVN: r84438
2004-07-10 03:38:55 +01:00
Bryce McKinlay
284d6a1fc3
Calendar.java: Use getSystemClassLoader as argument for ResourceBundle.getBundle() calls.
...
2004-07-09 Bryce McKinlay <mckinlay@redhat.com >
* java/util/Calendar.java: Use getSystemClassLoader as argument for
ResourceBundle.getBundle() calls.
* java/util/GregorianCalendar.java: Likewise.
* java/util/Currency.java: Likewise.
* java/text/BreakIterator.java: Likewise.
* java/text/Collator.java: Likewise.
* java/text/DateFormat.java: Likewise.
* java/text/DateFormatSymbols.java: Likewise.
* java/text/DecimalFormatSymbols.java: Likewise.
* java/text/NumberFormat.java: Likewise.
* java/awt/Window.java: Likewise.
From-SVN: r84437
2004-07-10 03:26:19 +01:00
Bryce McKinlay
21f56031ca
ResourceBundle.java (bundleCache): Renamed from resourceBundleCache.
...
2004-07-09 Bryce McKinlay <mckinlay@redhat.com >
* java/util/ResourceBundle.java (bundleCache): Renamed from
resourceBundleCache. Update comments.
(getObject): Don't catch MissingResourceException.
(getBundle(String)): Remove 'final'. Use system classloader if
getCallingClassLoader returned null.
(getBundle(String, Locale)): Likewise.
(BundleKey): New private class. HashMap key for bundle cache lookup.
(lookupKey): New. Singleton instance of BundleKey.
(nullEntry): New. Cache entry to represent failed lookups.
(getBundle(String, Locale, ClassLoader)): Re-written to use new
caching strategy, no-allocation lookup, and new tryBundle methods.
(tryBundle(String, ClassLoader)): New. Load a locale-qualified
bundle name using given classloader.
(tryBundle(String, Locale, ClassLoader, boolean): New. Qualify
baseName for given Locale and attempt to load bundle.
From-SVN: r84434
2004-07-10 03:14:30 +01:00
Michael Koch
d642571f32
DeflaterOutputStream.java, [...]: Reformatted.
...
2004-07-09 Michael Koch <konqueror@gmx.de >
* java/util/zip/DeflaterOutputStream.java,
java/util/zip/GZIPInputStream.java,
java/util/zip/GZIPOutputStream.java,
java/util/zip/InflaterInputStream.java:
Reformatted. Added javadocs. Reordered all stuff.
Renamed variables to be more clear.
From-SVN: r84380
2004-07-09 15:22:19 +00:00
Bryce McKinlay
a86f03720b
Locale.java (readObject): Intern strings read from object stream.
...
2004-07-05 Bryce McKinlay <mckinlay@redhat.com >
* java/util/Locale.java (readObject): Intern strings read from
object stream.
From-SVN: r84137
2004-07-05 23:33:24 +01:00
Bryce McKinlay
b5349c072a
Locale.java (hashcode): Made transient.
...
* java/util/Locale.java (hashcode): Made transient.
(hashCode): No longer synchronized.
(equals): Remove comment.
(writeObject): No longer synchronized. Implement using writeObject
calls instead of tweaking hashCode field. Update doc.
(readObject): Implement using readObject calls.
From-SVN: r84027
2004-07-02 20:41:33 +01:00
Anthony Green
1616280e70
ZipFile.getInputStream returns null if entry not found.
...
From-SVN: r83293
2004-06-17 13:53:11 +00:00
Bryce McKinlay
84b1d82150
Calendar.java: Change ResourceBundle.getBundle() calls to pass ClassLoader argument.
...
* java/util/Calendar.java: Change ResourceBundle.getBundle() calls
to pass ClassLoader argument.
* java/util/GregorianCalendar.java: Likewise.
* java/util/Currency.java: Likewise.
* java/text/BreakIterator.java: Likewise.
* java/text/Collator.java: Likewise.
* java/text/DateFormat.java: Likewise.
* java/text/DateFormatSymbols.java: Likewise.
* java/text/DecimalFormatSymbols.java: Likewise.
* java/text/NumberFormat.java: Likewise.
* java/awt/Window.java: Likewise.
From-SVN: r83109
2004-06-14 16:51:37 +01:00
Jerry Quinn
b092552d60
GregorianCalendar.java (computeTime): Skip buggy formulae when we already know the answer.
...
2004-06-11 Jerry Quinn <jlquinn@optonline.net >
* java/util/GregorianCalendar.java (computeTime): Skip buggy formulae
when we already know the answer.
* java/util/SimpleTimeZone.java (serialVersionOnStream): Bump to 2.
(setStartRule,setEndRule): Don't take abs of day number.
(getOffset): Clarify docs. Add argument checks.
(isBefore): Take abs of day number in DOW_LE_DOM_MODE.
(equals,hasSameRules,toString,readObject): Use startTimeMode and
endTimeMode.
From-SVN: r82962
2004-06-11 05:54:02 +00:00
Jerry Quinn
648b6075b2
ZipEntry.java (setTime): Remove scaling.
...
2004-06-06 Jerry Quinn <jlquinn@optonline.net >
* java/util/zip/ZipEntry.java (setTime): Remove scaling.
From-SVN: r82674
2004-06-06 20:52:10 +00:00
Michael Koch
f7dbd56c9a
InflaterInputStream.java: Merged more with Classpath version.
...
2004-06-01 Michael Koch <konqueror@gmx.de >
* java/util/zip/InflaterInputStream.java: Merged more with Classpath
version.
* java/util/zip/ZipOutputStream.java (): Renamed enum to e to removed
Java 1.5 keyword usage.
From-SVN: r82509
2004-05-31 22:14:37 +00:00
Jerry Quinn
b9f065beda
SimpleTimeZone.java: Reverting my last change until I can fix it properly.
...
2004-05-27 Jerry Quinn <jlquinn@optonline.net >
* java/util/SimpleTimeZone.java: Reverting my last change until I
can fix it properly.
From-SVN: r82340
2004-05-27 20:32:20 +00:00
Jerry Quinn
2140214f63
re PR libgcj/8321 (SimpleTimeZone doesn't work properly for daylight saving time.)
...
2004-05-26 Jerry Quinn <jlquinn@optonline.net >
PR libgcj/8321
* java/util/SimpleTimeZone.java (serialVersionOnStream): Bump to 2.
(setStartRule,setEndRule): Don't take abs of day number.
(getOffset): Clarify docs. Add argument checks.
(isBefore): Take abs of day number in DOW_LE_DOM_MODE.
(equals,hasSameRules,toString,readObject): Use startTimeMode and
endTimeMode.
* testsuite/libjava.mauve/xfails
(gnu.testlet.java.util.SimpleTimeZone.check12): XFAIL test 22.
From-SVN: r82310
2004-05-27 02:08:34 +00:00
Jerry Quinn
61af3d861b
SimpleTimeZone.java (startTimeMode, [...]): New members.
...
2004-05-07 Jerry Quinn <jlquinn@optonline.net >
* java/util/SimpleTimeZone.java (startTimeMode, endTimeMode,
WALL_TIME, STANDARD_TIME, UTC_TIME): New members.
(SimpleTimeZone): Tweak docs. Add new variation.
(setStartRule,setEndRule): Add new variations. Use
startTimeMode and endTimeMode.
From-SVN: r81605
2004-05-07 04:57:57 +00:00
Jerry Quinn
c37cc018f0
ChangeLog
...
From-SVN: r81604
2004-05-07 04:18:19 +00:00
Michael Koch
0a215a117b
2004-05-06 Michael Koch <konqueror@gmx.de>
...
* java/util/logging/Level.java
(parse): Use == instead of String.equals().
From-SVN: r81568
2004-05-06 15:55:00 +00:00
Michael Koch
4a93a22629
2004-05-05 Michael Koch <konqueror@gmx.de>
...
* java/util/prefs/AbstractPreferences.java
(AbstractPreferences): Added parenthesis for clarity.
Closes classpath bug #7940 .
From-SVN: r81515
2004-05-05 08:47:37 +00:00
Mark Wielaard
b1210ca233
Reported by f.haeglsperger@gmx.de [classpath patch #2485 ]
...
2004-05-05 Mark Wielaard <mark@klomp.org >
Reported by f.haeglsperger@gmx.de [classpath patch #2485 ]
* java/util/HashMap.java (rehash): Add entry at start of bucket.
From-SVN: r81512
2004-05-05 08:28:13 +00:00
Tom Tromey
d70bd7fff0
Format.java: Cleaned up imports.
...
2004-05-05 Tom Tromey <tromey@redhat.com >
* java/text/Format.java: Cleaned up imports.
* java/text/DecimalFormat.java: Cleaned up imports.
* java/security/SecureRandom.java: Cleaned up imports.
(SecureRandom): Removed unused variable.
* java/security/UnresolvedPermission.java: Cleaned up imports.
* java/util/Date.java (parse): Removed unused variable.
* java/util/ResourceBundle.java: Cleaned up imports.
(getBundle): Removed unused variable.
(tryBundle): Likewise.
* java/util/regex/Pattern.java (Pattern): Removed unused constructor.
From-SVN: r81503
2004-05-05 06:52:56 +00:00
Mark Wielaard
007265b805
DERReader.java: Call static methods staticly.
...
2004-05-03 Mark Wielaard <mark@klomp.org >
* gnu/java/security/der/DERReader.java: Call static methods staticly.
* java/awt/TextComponent.java (select): Use selectionEnd parameter.
* java/net/URL.java
(set(String, String, int, String, String, String, String, String)):
Assign this.file to path or path + "?" + query.
* java/util/Arrays.java: Call static methods staticly.
* java/util/zip/ZipEntry.java: Likewise.
* javax/swing/plaf/basic/BasicArrowButton.java (setDirection): Assign
dir to this.direction.
* javax/swing/table/DefaultTableCellRenderer.java (noFocusBorder):
Assign static field only once.
(DefaultTableCellRenderer): Don't reassign noFocusBorder each time.
From-SVN: r81453
2004-05-03 20:23:28 +00:00
Dalibor Topic
ace7ed7c24
[multiple changes]
...
2004-04-23 Dalibor Topic <robilad@kaffe.org >
* java/util/jar/JarFile.java,
java/util/jar/JarInputStream.java,
java/util/jar/JarOutputStream.java,
java/util/jar/Manifest.java:
Cleaned up imports.
2004-04-23 Dalibor Topic <robilad@kaffe.org >
* java/util/ArrayList.java,
java/util/Calendar.java,
java/util/Currency.java,
java/util/HashMap.java,
java/util/HashSet.java,
java/util/Hashtable.java,
java/util/LinkedList.java,
java/util/Properties.java,
java/util/PropertyPermission.java,
java/util/TimeZone.java,
java/util/TreeMap.java,
java/util/TreeSet.java,
java/util/Vector.java,
java/util/WeakHashMap.java:
Cleaned up imports.
2004-04-23 Dalibor Topic <robilad@kaffe.org >
* java/util/logging/FileHandler.java,
java/util/logging/Formatter.java,
java/util/logging/Handler.java,
java/util/logging/Logger.java,
java/util/logging/SimpleFormatter.java,
java/util/logging/XMLFormatter.java:
Cleaned up imports.
From-SVN: r81077
2004-04-23 06:36:06 +00:00
Dalibor Topic
c0dce2359c
Preferences.java, [...]: Cleaned up imports.
...
2004-04-22 Dalibor Topic <robilad@kaffe.org >
* java/util/prefs/Preferences.java,
java/util/prefs/InvalidPreferencesFormatException.java,
java/util/prefs/BackingStoreException.java,
java/util/prefs/AbstractPreferences.java:
Cleaned up imports.
2004-04-22 Dalibor Topic <robilad@kaffe.org >
* java/util/regex/Matcher.java,
java/util/regex/Pattern.java:
Cleaned up imports.
From-SVN: r81004
2004-04-22 06:46:18 +00:00
Michael Koch
ca17d211e8
2004-04-21 Michael Koch <konqueror@gmx.de>
...
* java/util/Properties.java
(load): Fix wrongly merged fix.
From-SVN: r80949
2004-04-21 07:25:14 +00:00
Michael Koch
387fa012f2
2004-04-21 Michael Koch <konqueror@gmx.de>
...
* java/util/Map.java
(Entry): Removed redundant "static" modifier.
* java/text/AttributedCharacterIterator.java:
Updated copyright year.
From-SVN: r80944
2004-04-21 05:25:11 +00:00
Michael Koch
391d8ef5e0
[multiple changes]
...
2004-04-20 Jeroen Frijters <jeroen@frijters.net >
* java/text/DecimalFormat.java (scanFix): Removed suffix check
for percent and permill check.
2004-04-20 Guilhem Lavaux <guilhem@kaffe.org >
* java/text/FieldPosition.java
(FieldPosition) Constructor now behaves as it should according
to the java documentation.
2004-04-20 Mark Wielaard <mark@klomp.org >
* java/util/Properties.java: Use the word umlaut, not ä in api
documentation.
From-SVN: r80910
2004-04-20 16:14:25 +00:00
Michael Koch
a17c9f2ea1
MarshalledObject.java, [...]: Fixed javadoc, coding style and argument names all over.
...
2004-04-20 Michael Koch <konqueror@gmx.de >
* java/rmi/MarshalledObject.java,
java/rmi/Naming.java,
java/rmi/RemoteException.java,
java/rmi/activation/ActivationException.java,
java/rmi/server/ServerCloneException.java,
java/security/AccessController.java,
java/security/AlgorithmParameterGenerator.java,
java/security/AlgorithmParameters.java,
java/security/CodeSource.java,
java/security/Identity.java,
java/security/IdentityScope.java,
java/security/KeyPairGenerator.java,
java/security/KeyStore.java,
java/security/Security.java,
java/security/Signature.java,
java/security/SignatureSpi.java,
java/security/SignedObject.java,
java/security/spec/DSAParameterSpec.java,
java/security/spec/DSAPrivateKeySpec.java,
java/security/spec/DSAPublicKeySpec.java,
java/sql/Array.java,
java/sql/DatabaseMetaData.java,
java/sql/ResultSet.java,
java/text/ChoiceFormat.java,
java/text/CollationElementIterator.java,
java/text/CollationKey.java,
java/text/Collator.java,
java/text/DateFormat.java,
java/text/DateFormatSymbols.java,
java/text/DecimalFormatSymbols.java,
java/text/Format.java,
java/text/ParsePosition.java,
java/text/RuleBasedCollator.java,
java/text/SimpleDateFormat.java,
java/text/StringCharacterIterator.java,
java/util/Collections.java,
java/util/PropertyResourceBundle.java,
java/util/ResourceBundle.java,
java/util/StringTokenizer.java,
java/util/jar/Attributes.java,
java/util/logging/ConsoleHandler.java,
java/util/logging/LogManager.java,
java/util/logging/MemoryHandler.java,
java/util/logging/SocketHandler.java,
javax/naming/NamingException.java:
Fixed javadoc, coding style and argument names all over.
From-SVN: r80906
2004-04-20 14:45:10 +00:00
Michael Koch
74a568a4c5
Locale.java: Reverting my last patch and add a comment why the original version was okay.
...
2004-03-15 Michael Koch <konqueror@gmx.de >
* java/util/Locale.java: Reverting my last patch
and add a comment why the original version was okay.
From-SVN: r79511
2004-03-15 22:04:59 +00:00
Michael Koch
4b0b51c970
2004-03-11 Michael Koch <konqueror@gmx.de>
...
* java/util/logging/Level.java
(parse): Use String.equals() instead of ==.
From-SVN: r79333
2004-03-11 17:35:01 +00:00
Michael Koch
deccda9fff
2004-03-11 Michael Koch <konqueror@gmx.de>
...
* java/util/Locale.java
(getISO3Language): Use String.equals() instead of ==.
(getISO3Country): Likewise.
From-SVN: r79330
2004-03-11 16:27:35 +00:00
Anthony Green
ec730df5fc
Makefile.am: Build property resource files into libgcj.
...
2004-03-08 Anthony Green <green@redhat.com >
* Makefile.am: Build property resource files into libgcj.
* Makefile.in: Rebuilt.
* java/util/regex/Matcher.java, java/util/regex/Pattern.java,
java/util/regex/PatternSyntaxException.java,
gnu/regexp/CharIndexed.java,
gnu/regexp/CharIndexedCharArray.java,
gnu/regexp/CharIndexedInputStream.java,
gnu/regexp/CharIndexedReader.java,
gnu/regexp/CharIndexedString.java,
gnu/regexp/CharIndexedStringBuffer.java, gnu/regexp/RE.java,
gnu/regexp/REException.java,
gnu/regexp/REFilterInputStream.java,
gnu/regexp/REFilterReader.java, gnu/regexp/REMatch.java,
gnu/regexp/REMatchEnumeration.java, gnu/regexp/RESyntax.java,
gnu/regexp/REToken.java, gnu/regexp/RETokenAny.java,
gnu/regexp/RETokenBackRef.java, gnu/regexp/RETokenChar.java,
gnu/regexp/RETokenEnd.java, gnu/regexp/RETokenEndSub.java,
gnu/regexp/RETokenLookAhead.java,
gnu/regexp/RETokenOneOf.java, gnu/regexp/RETokenPOSIX.java,
gnu/regexp/RETokenRange.java, gnu/regexp/RETokenRepeated.java,
gnu/regexp/RETokenStart.java,
gnu/regexp/RETokenWordBoundary.java,
gnu/regexp/UncheckedRE.java: Files merged from GNU Classpath.
From-SVN: r79198
2004-03-09 19:14:23 +00:00
Michael Koch
6d0c7d7b6a
Deflater.java, [...]: Reformated and javadoc comments merged from classpath.
...
2004-02-05 Michael Koch <konqueror@gmx.de >
* java/util/zip/Deflater.java,
java/util/zip/DeflaterOutputStream.java,
java/util/zip/GZIPInputStream.java:
Reformated and javadoc comments merged from classpath.
From-SVN: r77319
2004-02-05 16:04:28 +00:00
Michael Koch
030c1e2392
InflaterInputStream.java: Merged class documentation with classpath.
...
2004-01-24 Michael Koch <konqueror@gmx.de >
* java/util/zip/InflaterInputStream.java: Merged class documentation
with classpath.
From-SVN: r76519
2004-01-24 20:32:57 +00:00
Michael Koch
bbe4ef8921
2004-01-09 Michael Koch <konqueror@gmx.de>
...
* java/awt/geom/PathIterator.java
(WIND_EVEN_ODD): Removed redundant modifiers.
(WIND_NON_ZERO): Likewise.
(SEG_MOVETO): Likewise.
(SEG_LINETO): Likewise.
(SEG_QUADTO): Likewise.
(SEG_CUBICTO): Likewise.
(SEG_CLOSE): Likewise.
* java/awt/image/SinglePixelPackedSampleModel.java:
Removed redundant semicolon.
* java/io/ObjectInputStream.java
(inputGetObjectStreamClasses): Removed unused variable "ret_val".
* java/util/logging/Filter.java
(isLoggable): Removed redundant modifier.
* java/util/logging/LogManager.java:
Removed redundant semicolon.
* java/util/logging/XMLFormatter.java
(format): Removed unused variable "key".
From-SVN: r75570
2004-01-09 08:58:59 +00:00
Per Bothner
5814ecc2da
Date.java (parse): Fix a number of problems.
...
* java/util/Date.java (parse): Fix a number of problems.
(skipParens): Remove no-longer-needed method.
From-SVN: r75381
2004-01-03 16:32:50 -08:00
Michael Koch
cca9b4b54d
[multiple changes]
...
2003-12-30 Guilhem Lavaux <guilhem@kaffe.org >
* java/util/GregorianCalendar.java
(computeFields): Reported by Ito Kazumitsu <kaz@maczuka.gcd.org >.
Fixed the computation of DAY_OF_WEEK_IN_MONTH.
(computeTime): 12:00 midnight is AM and 12:00 noon is PM.
2003-12-30 Michael Koch <konqueror@gmx.de >
* testsuite/libjava.mauve/xfails: Removed the following testcase
because it passes now:
FAIL: gnu.testlet.java.text.SimpleDateFormat.Test: parse() strict
(number 1)
From-SVN: r75244
2003-12-30 19:56:49 +00:00
Michael Koch
c05fc0c2e1
2003-12-19 Michael Koch <konqueror@gmx.de>
...
* java/util/SimpleTimeZone.java
(setStartRule): Reformated documentation.
(setEndRule): Reworked documentation.
(getDSTSavings): Fixed @since tag.
(setDSTSavings): New method.
From-SVN: r74831
2003-12-19 11:01:05 +00:00
Michael Koch
a7296ae157
2003-12-18 Michael Koch <konqueror@gmx.de>
...
* java/util/prefs/AbstractPreferences.java
(cachedChildren): New method.
From-SVN: r74785
2003-12-18 16:48:33 +00:00
Michael Koch
e969bcdbbc
TimeZone.java (getOffset): New method.
...
2003-12-18 Michael Koch <konqueror@gmx.de >
* java/util/TimeZone.java (getOffset): New method.
From-SVN: r74784
2003-12-18 16:43:02 +00:00
Michael Koch
3a7ab7e8b7
Calendar.java, [...]: Import used classes explicitely.
...
2003-12-09 Michael Koch <konqueror@gmx.de >
* java/util/Calendar.java,
java/util/IdentityHashMap.java,
java/util/prefs/Preferences.java:
Import used classes explicitely.
From-SVN: r74471
2003-12-09 16:17:01 +00:00
Bryce McKinlay
0f46e42809
Hashtable.java (Hashtable(Map)): Use putAll, not putAllInternal.
...
* java/util/Hashtable.java (Hashtable(Map)): Use putAll, not
putAllInternal.
(putAllInternal): Correct comment.
* java/util/HashMap.java (HashMap(Map)): As above.
(putAllInternal): As above.
From-SVN: r74400
2003-12-07 23:00:49 +00:00
Bryce McKinlay
eb1e64ef80
Hashtable.java (internalContainsValue): Removed.
...
* java/util/Hashtable.java (internalContainsValue): Removed.
(containsValue): Don't delegate to internalContainsValue.
From-SVN: r74399
2003-12-07 21:03:49 +00:00