From: <cg...@us...> - 2009-08-22 23:05:27
|
Revision: 6708 http://jython.svn.sourceforge.net/jython/?rev=6708&view=rev Author: cgroves Date: 2009-08-22 23:05:15 +0000 (Sat, 22 Aug 2009) Log Message: ----------- Need to go through saveBytecode for the null check Modified Paths: -------------- branches/customizable-proxymaker/src/org/python/core/MakeProxies.java Modified: branches/customizable-proxymaker/src/org/python/core/MakeProxies.java =================================================================== --- branches/customizable-proxymaker/src/org/python/core/MakeProxies.java 2009-08-22 20:31:42 UTC (rev 6707) +++ branches/customizable-proxymaker/src/org/python/core/MakeProxies.java 2009-08-22 23:05:15 UTC (rev 6708) @@ -121,7 +121,7 @@ private static void saveDebugBytecode(String className, byte[] bytecode) { @SuppressWarnings("deprecation") String proxyDebugDir = Options.proxyDebugDirectory; - Py.saveClassFile(className, bytecode, proxyDebugDir); + saveBytecode(className, bytecode, proxyDebugDir); } private static final String proxyPrefix = "org.python.proxies."; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |