From: <pj...@us...> - 2008-12-09 22:26:01
|
Revision: 5725 http://jython.svn.sourceforge.net/jython/?rev=5725&view=rev Author: pjenvey Date: 2008-12-09 22:25:56 +0000 (Tue, 09 Dec 2008) Log Message: ----------- these are no longer used 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 2008-12-09 21:56:51 UTC (rev 5724) +++ trunk/jython/src/org/python/compiler/CodeCompiler.java 2008-12-09 22:25:56 UTC (rev 5725) @@ -633,17 +633,6 @@ } } - private boolean inFinallyBody() { - for (int i = 0; i < exceptionHandlers.size(); ++i) { - ExceptionHandler handler = - (ExceptionHandler)exceptionHandlers.elementAt(i); - if (handler.isFinallyHandler()) { - return true; - } - } - return false; - } - private void restoreLocals() throws Exception { endExceptionHandlers(); @@ -1490,7 +1479,6 @@ public static int makeStrings(Code c, Collection<String> names) throws IOException { - int n = 0; if (names != null) { c.iconst(names.size()); } else { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |