remove latin-1 characters

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12233 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2010-09-28 17:56:48 +00:00
commit 9f41fa27cb

View file

@ -363,7 +363,7 @@ To load your shared native library module in Java, simply use Java's <tt>System.
public class runme {
static {
  System.loadLibrary("example");
  System.loadLibrary("example");
}
public static void main(String argv[]) {
@ -6234,7 +6234,7 @@ public class runme {
static {
try {
  System.loadLibrary("example");
  System.loadLibrary("example");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load. " + e);
System.exit(1);
@ -6453,7 +6453,7 @@ public class runme {
static {
try {
  System.loadLibrary("example");
  System.loadLibrary("example");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load. " + e);
System.exit(1);