SharedLibLoader.java: Fix misspelling.

2003-07-11  Matt Kraai  <kraii@alumni.cmu.edu>

	* gnu/gcj/runtime/SharedLibLoader.java: Fix misspelling.
	* gnu/gcj/runtime/natSharedLibLoader.cc: Likewise.
	* java/awt/im/InputContext.java: Remove a redundant
	partial line.

From-SVN: r69238
This commit is contained in:
Matt Kraai 2003-07-11 18:27:54 +00:00 committed by Tom Tromey
parent 48144cd490
commit d3276d3574
4 changed files with 12 additions and 6 deletions

View File

@ -1,3 +1,10 @@
2003-07-11 Matt Kraai <kraii@alumni.cmu.edu>
* gnu/gcj/runtime/SharedLibLoader.java: Fix misspelling.
* gnu/gcj/runtime/natSharedLibLoader.cc: Likewise.
* java/awt/im/InputContext.java: Remove a redundant
partial line.
2003-07-09 Tom Tromey <tromey@redhat.com>
* Makefile.in: Rebuilt.

View File

@ -1,4 +1,4 @@
/* Copyright (C) 2001 Free Software Foundation
/* Copyright (C) 2001, 2003 Free Software Foundation
This file is part of libgcj.
@ -27,7 +27,7 @@ public class SharedLibLoader extends ClassLoader
/** Load a shared library, and associate a ClassLoader with it.
* @param libname named of shared library (passed to dlopen)
* @param parent the parent ClassLoader
* @parem flags passed to dlopen
* @param flags passed to dlopen
*/
public SharedLibLoader(String libname, ClassLoader parent, int flags)
{

View File

@ -1,6 +1,6 @@
// natSharedLibLoader.cc - Implementation of FirstThread native methods.
/* Copyright (C) 2001 Free Software Foundation
/* Copyright (C) 2001, 2003 Free Software Foundation
This file is part of libgcj.
@ -62,7 +62,7 @@ gnu::gcj::runtime::SharedLibLoader::init(jbyteArray libname, jint flags)
}
handler = (gnu::gcj::RawData*) h;
#else
const char *msg = "ShareedLibLoader is not supported on this platform";
const char *msg = "SharedLibLoader is not supported on this platform";
throw new java::lang::UnsupportedOperationException(JvNewStringLatin1(msg));
#endif
}

View File

@ -1,5 +1,5 @@
/* InputContext.java -- provides the context for text input
Copyright (C) 2002 Free Software Foundation, Inc.
Copyright (C) 2002, 2003 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -339,7 +339,6 @@ public class InputContext
*
* @throws UnsupportedOperationException if there is no current input method,
* or the input method does not support reconversion
* @throws UnsupportedOperationException if ther
* @since 1.3
*/
public void reconvert()