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:
parent
48144cd490
commit
d3276d3574
4 changed files with 12 additions and 6 deletions
|
@ -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>
|
2003-07-09 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
* Makefile.in: Rebuilt.
|
* Makefile.in: Rebuilt.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* 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
|
||||||
/** 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)
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// 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)
|
||||||
}
|
}
|
||||||
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
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* 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
|
||||||
*
|
*
|
||||||
* @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()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue