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:
@@ -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)
|
||||
{
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user