summaryrefslogtreecommitdiffstats
path: root/libjava
Commit message (Collapse)AuthorAgeFilesLines
* 2004-03-16 Michael Koch <konqueror@gmx.de>mkoch2004-03-162-0/+7
| | | | | | | | * javax/swing/JTabbedPane.java (serialVersionUID): New field. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79531 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-03-16 Norbert Frese <postfach@nfrese.net>mkoch2004-03-162-2/+7
| | | | | | | | * java/net/InetAddress.java (getByName): Handle hostname == "" case. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79529 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-03-16 Dalibor Topic <robilad@kaffe.org>mkoch2004-03-162-1/+9
| | | | | | | | | Reported by: Adam Heath <doogie@debian.org> * gnu/javax/rmi/CORBA/DelegateFactory.java (getInstance): Use context class loader. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79528 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-03-15 Michael Koch <konqueror@gmx.de>mkoch2004-03-152-2/+9
| | | | | | | | * java/util/Locale.java: Reverting my last patch and add a comment why the original version was okay. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79511 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-03-14 Andreas Tobler <a.tobler@schweiz.ch>andreast2004-03-132-2/+29
| | | | | | | | | | * gnu/java/nio/channels/natFileChannelPosix.cc: Implement munmap_adaptor and msync_adaptor for older POSIX_C_SOURCES specs. (MappedByteBufferImpl::unmapImpl): Use munmap_adaptor. (MappedByteBufferImpl::forceImpl): Use msync_adptor. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79462 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-03-12 Michael Koch <konqueror@gmx.de>mkoch2004-03-122-1/+5
| | | | | | | * java/text/DateFormatSymbols.java: Fixed file name in copyright. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79379 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-03-12 Ito Kazumitsu <ito.kazumitsu@hitachi-cable.co.jp>mkoch2004-03-122-20/+295
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * java/net/URI.java (toURL): Implemented. 2004-03-12 Ito Kazumitsu <ito.kazumitsu@hitachi-cable.co.jp> * java/net/URI.java (URI_REGEXP) updated to contain scheme specific part. (SCHEME_SPEC_PART_GROUP) new constant. (AUTHORITY_GROUP, PATH_GROUP, QUERY_GROUP, FRAGMENT_GROUP) updated to make room for SCHEME_SPEC_PART_GROUP. (parseURI) parse scheme specific part. (resolve, isAbsolute, isOpaque, getRawSchemeSpecificPart, getSchemeSpecificPart, getAuthority, getUserInfo, getPath, getQuery, getFragment) implemented. 2004-03-12 Dalibor Topic <robilad@kaffe.org> * libraries/javalib/java/net/URI.java partially implemented using java.util.regex. (URI_REGEXP) new constant. Used to parse URIs. (SCHEME_GROUP) new constant representing index of scheme group in parsed URI. (AUTHORITY_GROUP) new constant representing index of authority group in parsed URI. (PATH_GROUP) new constant representing index of path group in parsed URI. (QUERY_GROUP) new constant representing index of query group in parsed URI. (FRAGMENT_GROUP) new constant representing index of fragment group in parsed URI. (getURIGroup) new static utility method. (parseURI) implemented. (quote) stub for new static utility method. (quoteAuthority) stub for new static utility method. (quoteHost) stub for new static utility method. (quotePath) stub for new static utility method. (quoteUserInfo) stub for new static utility method. (URI) implemented. (create) don't throw URISyntaxException. Implemented. (toString) implemented. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79375 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-03-12 Michael Koch <konqueror@gmx.de>mkoch2004-03-122-1/+6
| | | | | | | | * java/net/HttpURLConnection.java (getResponseCode): Fix another typo in javadoc. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79374 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-03-11 Michael Koch <konqueror@gmx.de>mkoch2004-03-112-4/+8
| | | | | | | | * java/util/logging/Level.java (parse): Use String.equals() instead of ==. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79333 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-03-11 Michael Koch <konqueror@gmx.de>mkoch2004-03-112-0/+20
| | | | | | | | * gnu/java/net/protocol/jar/Connection.java (getContentLength): New method. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79332 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-03-11 Michael Koch <konqueror@gmx.de>mkoch2004-03-112-33/+101
| | | | | | | | * gnu/java/net/PlainSocketImpl.java: Reformated to merge better with classpath's version. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79331 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-03-11 Michael Koch <konqueror@gmx.de>mkoch2004-03-112-2/+8
| | | | | | | | | * java/util/Locale.java (getISO3Language): Use String.equals() instead of ==. (getISO3Country): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79330 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-03-11 Dalibor Topic <robilad@kaffe.org>mkoch2004-03-113-8/+28
| | | | | | | | | | | | | | | | | | * java/text/AttributedString.java (addAttribute(AttributedCharacterIterator.Attribute,Object,int,int)): Use HashMap instead of Hashtable since value can be null, and you can not store a null value in a Hashtable. 2004-03-11 Guilhem Lavaux <guilhem@kaffe.org> * java/text/AttributedStringIterator.java (getAllAttributesKey): Return only keys concerned by the current iterator. (getAttributes): Use strict inequality for end_index. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79329 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-03-11 Michael Koch <konqueror@gmx.de>mkoch2004-03-112-1/+6
| | | | | | | | * java/net/HttpURLConnection.java: Fixed typo in javadoc. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79328 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-03-11 Guilhem Lavaux <guilhem@kaffe.org>mkoch2004-03-112-5/+34
| | | | | | | | | | | | | | * java/io/BufferedInputStream.java (marktarget): New field for max mark limit. (CHUNKSIZE): New constant for incremental mark buffer allocation. (mark): Use new fields. (read): Likewise. (read(byte[],int,int)): Likewise. (skip): Likewise. (refill): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79326 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-03-11 Mark Wielaard <mark@klomp.org>mkoch2004-03-112-1/+14
| | | | | | | | * java/beans/BeanDescriptor.java (BeanDescriptor): Set the FeatureDescriptor programmatic name. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79324 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-03-11 Michael Koch <konqueror@gmx.de>mkoch2004-03-112-46/+69
| | | | | | | | | * gnu/java/nio/channels/natFileChannelEcos.cc: Totally reworked. This file was was just copied form java/io/natFileDescriptorEcos.cc and never changed to compile correctly. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79320 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-03-11 Michael Koch <konqueror@gmx.de>mkoch2004-03-112-9/+40
| | | | | | | | | | | * gnu/java/nio/PipeImpl.java (SourceChannelImpl): Made final. (read): Implemented. (SinkChannelImpl): Made final. (write): Implemented. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79315 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-03-11 Michael Koch <konqueror@gmx.de>mkoch2004-03-112-23/+29
| | | | | | | | * gnu/java/net/PlainDatagramSocketImpl.java: Reformated to match classpath's version more. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79314 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-03-11 Michael Koch <konqueror@gmx.de>mkoch2004-03-113-3/+10
| | | | | | | | | | * gnu/java/awt/peer/ClasspathFontPeer.java: Fixed javadoc to be correct xhtml. * gnu/java/awt/peer/gtk/GtkArgList.java (add): Use Boolean.valueOf() instead of new Boolean(). git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79313 138bc75d-0d04-0410-961f-82ee72b054a4
* boehm-gc/kcook2004-03-114-638/+1593
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2004-03-10 Kelley Cook <kcook@gcc.gnu.org> * configure.ac: Bump AC_PREREQ to 2.59. * configure: Regenerate. * config.in: Regenerate. fastjar/ 2004-03-10 Kelley Cook <kcook@gcc.gnu.org> * configure.ac: Bump AC_PREREQ to 2.59. * configure: Regenerate. intl/ 2004-03-10 Kelley Cook <kcook@gcc.gnu.org> * configure.ac: Bump AC_PREREQ to 2.59. * configure: Regenerate. * config.h.in: Regenerate. gcc/ 2004-03-10 Kelley Cook <kcook@gcc.gnu.org> * configure.ac: Bump AC_PREREQ to 2.59. * configure: Regenerate. libada/ 2004-03-10 Kelley Cook <kcook@gcc.gnu.org> * configure.in: Rename file to ... * configure.ac: .. to this. Bump AC_PREREQ to 2.59. * configure: Regenerate. libjava/libltdl/ 2004-03-10 Kelley Cook <kcook@gcc.gnu.org> * configure.ac: Bump AC_PREREQ to 2.59. * configure: Regenerate. * config-h.in: Regenerate. libstdc++-v3/ 2004-03-10 Kelley Cook <kcook@gcc.gnu.org> * configure.ac: Bump AC_PREREQ to 2.59. contrib/ 2004-03-10 Kelley Cook <kcook@gcc.gnu.org> * gcc_update (files_and_dependencies): Insert libada/configure. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79285 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-03-09 Michael Koch <konqueror@gmx.de>mkoch2004-03-093-79/+90
| | | | | | | | | | | | | | | | | * java/lang/Thread.java (runnable): Moved around. (daemon): Renamed from daemon_flag. (contextClassLoader): Renamed from context_class_loader. (Thread): Reordered constructors. (activeCount): Use group directly. (destroy): Make it a java method. Throw NoSuchMethodError like Sun does. (holdsLock): Reworked javadoc. (setDaemon): Reworked. * java/lang/natThread.cc (destroy): Removed. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79200 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-03-08 Anthony Green <green@redhat.com>green2004-03-0934-136/+5130
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79198 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/nio/channels/Channels.java (newInputStream, newOutputStream):bothner2004-03-035-92/+141
| | | | | | | | | | | Optimize when argument is a FileChannelImpl. (newInputStream(FileChannelImpl), newOutputStream(FileChannelImpl)): New native methods. * java/nio/channels/natChannels.cc: New file for new native methods. * Makefile.am: Update accordingly. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78867 138bc75d-0d04-0410-961f-82ee72b054a4
* * configure: Regenerate.hubicka2004-03-022-2/+3
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78765 138bc75d-0d04-0410-961f-82ee72b054a4
* * configure.host: Pass -fno-omit-frame-pointer for i386.hubicka2004-03-023-2/+7
| | | | | | | * configure.in: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78764 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/lang/natPosixProcess.cc (startProcess): Fix thinko.bothner2004-03-012-1/+14
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78725 138bc75d-0d04-0410-961f-82ee72b054a4
* ChangeLog: Previous java/io, java/nio, gnu/java/nio and related changes.bothner2004-02-295-297/+345
| | | | | | | * Makefile.am, configure.in: Updated accordingly. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78666 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/lang/natPosixProcess.cc (startProcess): Implement standardbothner2004-02-292-9/+18
| | | | | | | | streams using FileChannelImpl, not FileDescriptor. * java/lang/natWin32Process.cc (startProcess): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78664 138bc75d-0d04-0410-961f-82ee72b054a4
* * gnu/java/nio/FileLockImpl.java (fd): Remove field, replacing it by:bothner2004-02-292-32/+6
| | | | | | | | | | (ch): New FileChannelImpl field. Update constructor to match. (releaseImpl): Remove native method. Instead ... (release): Call unlock on channel. * gnu/java/nio/natFileLockImpl.cc: Removed file. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78663 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/nio/MappedByteBuffer.java: (forceImpl, isLoadedImpl, loadImpl,bothner2004-02-292-47/+103
| | | | | | | | | | unmapImpl): New dummy methods, to be overridden by subclass. (finalize, isLoaded, load, force): New methods. * java/nio/MappedByteBufferImpl.java: More-or-less rewrite. Now works, at least for read mapping. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78662 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/io/FileDescriptor.java: Implement on top of FileChannel.bothner2004-02-297-1184/+106
| | | | | | | | | | | | | | | | | | | | Remove native methods. * java/io/natFileDescriptorEcos.cc: Remove file. * java/io/natFileDescriptorPosix.cc: Remove file. * java/io/natFileDescriptorWin32.cc: Remove file. * java/io/FileInputStream.java (ch): Change type to FileChannelImpl. (<init>(File)): Allocate a FileChannelImpl, not a FileDescriptor. (<init>(FileChannelImpl)): New package-private constructor. (<init>(FileDescriptor)): Extract FileChannelImpl from arg. (available, close, read, skip): Implement using FileChannelImpl. (getFD): Allocate FileDescriptor if needed. (getChannel): Is now trivial. * java/io/FileOutputStream.java: Corresponding changes. * java/io/RandomAccessFile.java: Corresponding changes. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78661 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/nio/channels/FileChannelImpl.java: Moved to packagebothner2004-02-292-551/+0
| | | | | | | | | | gnu/java/nio/channels, since we need to refer to it from java.io. * java/nio/channels/natFileChannelImpl.cc: Removed file. * Makefile.am, configure.in: Updated accordingly. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78660 138bc75d-0d04-0410-961f-82ee72b054a4
* * gnu/java/nio/channels/FileChannelImpl.java: New class, renamedbothner2004-02-294-0/+1533
| | | | | | | | | | | | | | | | | from java/nio/channels. Don't depend on FileDescriptor. (in, out, err): New static fields. (mode): New field. (SET, CUR, READ, WRITE, APPEND, EXCL, SYNC, DSYNC): Moved constants from FileDescriptor. (by): Removed MappedByteBuffer field. (map): New working implementation. * gnu/java/nio/channels/natFileChannelPosix.cc: New file, though some code "ported" from natFileDescriptoPosix.cc. * gnu/java/nio/channels/natFileChannelEcos.cc: Likewise. * gnu/java/nio/channels/natFileChannelWin32.cc Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78659 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-28 Michael Koch <konqueror@gmx.de>mkoch2004-02-282-0/+6
| | | | | | | | * java/io/ObjectInputStream.java: Compile fix, damn I commited the wrong code. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78629 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-28 Guilhem Lavaux <guilhem@kaffe.org>mkoch2004-02-284-173/+317
| | | | | | | | | | | | | | | | * java/io/ObjectInputStream.java (readClassDescriptor): Keep elements of the mapping non null. (checkTypeConsistency): New method. (readFields): Fixed main loop and base logic. Small reindentation. * java/io/ObjectStreamField.java (lookupField): New method to update the field reference. (checkFieldType): New method. * java/io/ObjectStreamClass.java (setClass, setFields): Call lookupField when building the field database. Check the real field type. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78627 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-28 Michael Koch <konqueror@gmx.de>mkoch2004-02-282-1/+6
| | | | | | | | * java/nio/ByteOrder.java (nativeOrder): Use equals() to compare strings. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78626 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-26 Michael Koch <konqueror@gmx.de>mkoch2004-02-265-12/+30
| | | | | | | | | | | | | | | | | | | * gnu/java/nio/FileLockImpl.java (finalize): Made protected. * java/nio/channels/FileChannel.java (MapMode.READ_ONLY): Made final. (MapMode.READ_WRITE): Made final. (MapMode.PRIVATE): Made final. * java/nio/channels/SocketChannel.java (open): Simplified code. * java/nio/channels/spi/AbstractSelectableChannel.java (registered): Unused, removed. (keyFor): Check channel is open, only locate key and not add a new one. (register): Don't delete attachments. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78519 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-26 Michael Koch <konqueror@gmx.de>mkoch2004-02-263-9/+18
| | | | | | | | | | | * gnu/java/awt/ComponentDataBlitOp.java (INSTANCE): Made final. * gnu/java/awt/image/ImageDecoder.java: Reworked imports. (cm): Unused, removed. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78517 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-26 Michael Koch <konqueror@gmx.de>mkoch2004-02-262-2/+12
| | | | | | | | * gnu/java/nio/DatagramChannelImpl.java (send): Check if target address is resolved. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78508 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-25 Andrew Haley <aph@redhat.com>aph2004-02-261-1/+10
| | | | | | | | | PR java/14296: * java/lang/reflect/natMethod.cc (_Jv_CallAnyMethodA): Make sure we have a valid method index. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78504 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-26 Michael Koch <konqueror@gmx.de>mkoch2004-02-263-4/+57
| | | | | | | | | * Makefile.am: Generate and install headers for inner classes in java.nio.channels.Pipe and gnu.java.nio.PipeImpl. * Makefile.in: Regenerated. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78493 138bc75d-0d04-0410-961f-82ee72b054a4
* de-pessimizationgreen2004-02-252-4/+27
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78447 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-22 Zack Weinberg <zack@codesourcery.com>zack2004-02-233-2974/+50
| | | | | | | | | | | | | Nathanael Nerode <neroden@twcny.rr.com> Alexandre Oliva <aoliva@redhat.com> boehm-gc: libjava/libltdl: * config.sub, config.guess: Replace with forwarding scripts which invoke the master copies in the top level. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78332 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-20 Michael Koch <konqueror@gmx.de>mkoch2004-02-202-2/+7
| | | | | | | | | * gnu/java/net/protocol/jar/Handler.java (): Removed unneeded check for file != null. java.net.URL.getFile() returns an empty string but never null. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78176 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-20 Michael Koch <konqueror@gmx.de>mkoch2004-02-202-2/+7
| | | | | | | | * gnu/gcj/convert/Convert.java (main): Use equals() to compare strings. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78174 138bc75d-0d04-0410-961f-82ee72b054a4
* Index: ChangeLogcagney2004-02-203-8/+83
| | | | | | | | | | | | | | | | | | | | | | 2004-02-19 Andrew Cagney <cagney@redhat.com> * config.guess: Update from version 2003-10-16 to 2004-02-16. * config.sub: Update from version 2003-11-03 to 2004-02-16. Index: boehm-gc/ChangeLog 2004-02-19 Andrew Cagney <cagney@redhat.com> * config.guess: Update from version 2002-01-10 to 2004-02-16. * config.sub: Update from version 2002-01-02 to 2004-02-16. Index: libjava/libltdl/ChangeLog 2004-02-19 Andrew Cagney <cagney@redhat.com> * config.guess: Update from version 2003-10-07 to 2004-02-16. * config.sub: Update from version 2003-10-07 to 2004-02-16. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78171 138bc75d-0d04-0410-961f-82ee72b054a4
* 2004-02-20 Michael Koch <konqueror@gmx.de>mkoch2004-02-202-21/+27
| | | | | | | | | * javax/swing/AbstractButton.java: Made several constants final. (getRolloverSelectedIcon): Made public. (getSelectedIcon): Made public. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78169 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/nio/ByteBuffer.java (endian): Make non-private so otherbothner2004-02-166-96/+193
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | java.nio classes can inherit it. (<init>): Don't bother clearing array_offset. * java/nio/ByteBuffer.java (allocate): Re-implement using wrap. * java/nio/ByteBuffer.java (get(byte[],int,int)): Check underflow. Remove redundant test. * java/nio/ByteBufferImpl.java (asCharBuffer, asShortBuffer, asIntBuffer, asLongBuffer, asFloatBuffer, asDoubleBuffer): Use new XxxViewBufferImpl constructors. * java/nio/MappedByteBufferImpl.java: Likewise. * java/nio/DirectByteBufferImpl.java: Likewise. * java/nio/ByteBufferImpl.java: Remove one constructor. Inline super in remaining constructor. * java/nio/ByteBuffer.java: Remove unused constructor. * java/nio/ByteBufferImpl.java (shiftDown): New optimized method. * java/nio/ByteBufferImpl.java (get, put): Add array_offset. * java/nio/DirectByteBufferImpl.java (owner): New field. (offset): Remove unused field. (<init>): Modify one and add another constructor. Change callers. (allocateDirect): Removed - not used. (getImpl, putImpl): Make static and pass address explicitly, to make them useful for MappedByteBufferImpl. (get, put): Check for underflow. Modify for new getImpl. (getImpl): New native method where target is array. (get(byte[],int,int)): Use the above. (adjustAddress): New static native method. (slice, duplicate, asReadOnly): New implementations. * java/nio/natDirectByteBufferImpl.cc (getImpl, putImpl, shiftDown, adjustAddress): New or updated native methods. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77919 138bc75d-0d04-0410-961f-82ee72b054a4
* * java/nio/CharViewBufferImpl.java: New convenience constructor.bothner2004-02-167-6/+67
| | | | | | | | | | | | Fix buggy call to super constructor. * java/nio/DoubleViewBufferImpl.java: Likewise. * java/nio/FloatViewBufferImpl.java: Likewise. * java/nio/IntViewBufferImpl.java: Likewise. * java/nio/LongViewBufferImpl.java: Likewise. * java/nio/ShortViewBufferImpl.java: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77917 138bc75d-0d04-0410-961f-82ee72b054a4
OpenPOWER on IntegriCloud