Commit d3276d35 by Matt Kraai Committed by Tom Tromey

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
parent 48144cd4
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> 2003-07-09 Tom Tromey <tromey@redhat.com>
* Makefile.in: Rebuilt. * Makefile.in: Rebuilt.
......
/* Copyright (C) 2001 Free Software Foundation /* Copyright (C) 2001, 2003 Free Software Foundation
This file is part of libgcj. This file is part of libgcj.
...@@ -27,7 +27,7 @@ public class SharedLibLoader extends ClassLoader ...@@ -27,7 +27,7 @@ public class SharedLibLoader extends ClassLoader
/** Load a shared library, and associate a ClassLoader with it. /** Load a shared library, and associate a ClassLoader with it.
* @param libname named of shared library (passed to dlopen) * @param libname named of shared library (passed to dlopen)
* @param parent the parent ClassLoader * @param parent the parent ClassLoader
* @parem flags passed to dlopen * @param flags passed to dlopen
*/ */
public SharedLibLoader(String libname, ClassLoader parent, int flags) public SharedLibLoader(String libname, ClassLoader parent, int flags)
{ {
......
// natSharedLibLoader.cc - Implementation of FirstThread native methods. // 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. This file is part of libgcj.
...@@ -62,7 +62,7 @@ gnu::gcj::runtime::SharedLibLoader::init(jbyteArray libname, jint flags) ...@@ -62,7 +62,7 @@ gnu::gcj::runtime::SharedLibLoader::init(jbyteArray libname, jint flags)
} }
handler = (gnu::gcj::RawData*) h; handler = (gnu::gcj::RawData*) h;
#else #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)); throw new java::lang::UnsupportedOperationException(JvNewStringLatin1(msg));
#endif #endif
} }
......
/* InputContext.java -- provides the context for text input /* 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. This file is part of GNU Classpath.
...@@ -339,7 +339,6 @@ public class InputContext ...@@ -339,7 +339,6 @@ public class InputContext
* *
* @throws UnsupportedOperationException if there is no current input method, * @throws UnsupportedOperationException if there is no current input method,
* or the input method does not support reconversion * or the input method does not support reconversion
* @throws UnsupportedOperationException if ther
* @since 1.3 * @since 1.3
*/ */
public void reconvert() public void reconvert()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment