From: <ls...@us...> - 2007-08-24 16:36:01
|
Revision: 3401 http://jnode.svn.sourceforge.net/jnode/?rev=3401&view=rev Author: lsantha Date: 2007-08-24 09:35:54 -0700 (Fri, 24 Aug 2007) Log Message: ----------- Disabled the oj-annotate task in build by FabienD since it is still buggy. Modified Paths: -------------- trunk/all/build.xml trunk/core/src/openjdk/sun/sun/misc/SharedSecrets.java Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2007-08-23 20:59:27 UTC (rev 3400) +++ trunk/all/build.xml 2007-08-24 16:35:54 UTC (rev 3401) @@ -166,7 +166,7 @@ </target> <!-- Assemble all plugins --> - <target name="assemble-plugins" depends="assemble-projects,openjdk-annotate"> + <target name="assemble-plugins" depends="assemble-projects"> <!-- Now assemble all plugins --> <taskdef name="plugin" classname="org.jnode.build.PluginTask" classpathref="cp-jnode"/> <plugin todir="${plugins.dir}" tmpdir="${build.dir}/tmp/plugins" pluginDir="${descriptors.dir}"> Modified: trunk/core/src/openjdk/sun/sun/misc/SharedSecrets.java =================================================================== --- trunk/core/src/openjdk/sun/sun/misc/SharedSecrets.java 2007-08-23 20:59:27 UTC (rev 3400) +++ trunk/core/src/openjdk/sun/sun/misc/SharedSecrets.java 2007-08-24 16:35:54 UTC (rev 3401) @@ -28,6 +28,7 @@ import java.util.jar.JarFile; import java.io.Console; import java.io.File; +import org.jnode.vm.annotation.SharedStatics; /** A repository of "shared secrets", which are a mechanism for calling implementation-private methods in another package without @@ -38,6 +39,7 @@ This framework avoids the primary disadvantage of using reflection for this purpose, namely the loss of compile-time checking. */ +@SharedStatics public class SharedSecrets { private static final Unsafe unsafe = Unsafe.getUnsafe(); private static JavaUtilJarAccess javaUtilJarAccess; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |