From: <fwi...@us...> - 2009-10-26 20:28:01
|
Revision: 6907 http://jython.svn.sourceforge.net/jython/?rev=6907&view=rev Author: fwierzbicki Date: 2009-10-26 20:11:44 +0000 (Mon, 26 Oct 2009) Log Message: ----------- Remove unused variable. Modified Paths: -------------- trunk/jython/src/org/python/compiler/Module.java Modified: trunk/jython/src/org/python/compiler/Module.java =================================================================== --- trunk/jython/src/org/python/compiler/Module.java 2009-10-26 19:51:10 UTC (rev 6906) +++ trunk/jython/src/org/python/compiler/Module.java 2009-10-26 20:11:44 UTC (rev 6907) @@ -581,7 +581,6 @@ c.ldc(classfile.name); c.invokespecial(classfile.name, "<init>", sig(Void.TYPE, String.class)); c.invokevirtual(classfile.name, "getMain", sig(PyCode.class)); - String bootstrap = Type.getDescriptor(CodeBootstrap.class); c.invokestatic(p(CodeLoader.class), CodeLoader.SIMPLE_FACTORY_METHOD_NAME, sig(CodeBootstrap.class, PyCode.class)); c.aload(0); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |