summaryrefslogtreecommitdiffstats
path: root/libjava/classpath/vm/reference/java/lang/VMCompiler.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/vm/reference/java/lang/VMCompiler.java')
-rw-r--r--libjava/classpath/vm/reference/java/lang/VMCompiler.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/libjava/classpath/vm/reference/java/lang/VMCompiler.java b/libjava/classpath/vm/reference/java/lang/VMCompiler.java
index fe740075671..9a7d83facee 100644
--- a/libjava/classpath/vm/reference/java/lang/VMCompiler.java
+++ b/libjava/classpath/vm/reference/java/lang/VMCompiler.java
@@ -1,5 +1,5 @@
/* VMClassLoader.java -- Reference implementation of compiler interface
- Copyright (C) 2004 Free Software Foundation
+ Copyright (C) 2004, 2010 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -58,7 +58,7 @@ final class VMCompiler
* compilation failed, <code>true</code> if compilation succeeded
* @throws NullPointerException if oneClass is null
*/
- public static boolean compileClass(Class oneClass)
+ static boolean compileClass(Class oneClass)
{
// Never succeed.
return false;
@@ -72,7 +72,7 @@ final class VMCompiler
* compilation failed, <code>true</code> if compilation succeeded
* @throws NullPointerException if classNames is null
*/
- public static boolean compileClasses(String classNames)
+ static boolean compileClasses(String classNames)
{
// Note the incredibly lame interface. Always fail.
return false;
@@ -87,7 +87,7 @@ final class VMCompiler
* @return a compiler-specific value, including null
* @throws NullPointerException if the compiler doesn't like a null arg
*/
- public static Object command(Object arg)
+ static Object command(Object arg)
{
// Our implementation defines this to a no-op.
return null;
@@ -98,7 +98,7 @@ final class VMCompiler
* to resume operation if it was previously disabled; provided that a
* compiler even exists.
*/
- public static void enable()
+ static void enable()
{
}
@@ -106,7 +106,7 @@ final class VMCompiler
* Calling <code>Compiler.disable()</code> will cause the compiler
* to be suspended; provided that a compiler even exists.
*/
- public static void disable()
+ static void disable()
{
}
}
OpenPOWER on IntegriCloud