summaryrefslogtreecommitdiff
path: root/gnu/java/lang/MainThread.java
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/java/lang/MainThread.java')
-rw-r--r--gnu/java/lang/MainThread.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/java/lang/MainThread.java b/gnu/java/lang/MainThread.java
index 7ad70cd7c..a72956421 100644
--- a/gnu/java/lang/MainThread.java
+++ b/gnu/java/lang/MainThread.java
@@ -8,7 +8,7 @@ GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
-
+
GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
@@ -58,7 +58,7 @@ public class MainThread
throws ClassNotFoundException, NoSuchMethodException
{
Class found = Class.forName(classname, true,
- ClassLoader.getSystemClassLoader());
+ ClassLoader.getSystemClassLoader());
Class[] argTypes = new Class[1];
argTypes[0] = args.getClass();
mainMethod = found.getMethod("main", argTypes);
@@ -69,15 +69,15 @@ public class MainThread
{
try
{
- mainMethod.invoke(null,(Object) args);
+ mainMethod.invoke(null,(Object) args);
}
catch(IllegalAccessException e)
{
- // Ignore.
+ // Ignore.
}
catch(InvocationTargetException e)
{
- // Ignore.
+ // Ignore.
}
}
}