From: <fwi...@us...> - 2009-10-26 19:51:18
|
Revision: 6906 http://jython.svn.sourceforge.net/jython/?rev=6906&view=rev Author: fwierzbicki Date: 2009-10-26 19:51:10 +0000 (Mon, 26 Oct 2009) Log Message: ----------- Remove another unused variable. Modified Paths: -------------- trunk/jython/src/org/python/compiler/CodeCompiler.java Modified: trunk/jython/src/org/python/compiler/CodeCompiler.java =================================================================== --- trunk/jython/src/org/python/compiler/CodeCompiler.java 2009-10-26 19:34:45 UTC (rev 6905) +++ trunk/jython/src/org/python/compiler/CodeCompiler.java 2009-10-26 19:51:10 UTC (rev 6906) @@ -116,7 +116,6 @@ private Map<String, SymInfo> tbl; private ScopeInfo my_scope; private boolean optimizeGlobals = true; - private Vector<String> names; private String className; private Stack<Label> continueLabels, breakLabels; private Stack<ExceptionHandler> exceptionHandlers; @@ -261,7 +260,6 @@ this.cflags = cflags; my_scope = scope; - names = scope.names; tbl = scope.tbl; optimizeGlobals = checkOptimizeGlobals(fast_locals, scope); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |