From: <pj...@us...> - 2008-12-11 00:39:52
|
Revision: 5734 http://jython.svn.sourceforge.net/jython/?rev=5734&view=rev Author: pjenvey Date: 2008-12-11 00:39:49 +0000 (Thu, 11 Dec 2008) Log Message: ----------- COMPUTE_FRAMES implies COMPUTE_MAXS Modified Paths: -------------- trunk/jython/src/org/python/compiler/ClassFile.java Modified: trunk/jython/src/org/python/compiler/ClassFile.java =================================================================== --- trunk/jython/src/org/python/compiler/ClassFile.java 2008-12-11 00:10:25 UTC (rev 5733) +++ trunk/jython/src/org/python/compiler/ClassFile.java 2008-12-11 00:39:49 UTC (rev 5734) @@ -46,7 +46,7 @@ this.interfaces = new String[0]; this.access = access; - cw = new ClassWriter(ClassWriter.COMPUTE_MAXS | ClassWriter.COMPUTE_FRAMES); + cw = new ClassWriter(ClassWriter.COMPUTE_FRAMES); methodVisitors = Collections.synchronizedList(new ArrayList()); fieldVisitors = Collections.synchronizedList(new ArrayList()); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |