From: <nr...@us...> - 2009-07-22 23:52:11
|
Revision: 6562 http://jython.svn.sourceforge.net/jython/?rev=6562&view=rev Author: nriley Date: 2009-07-22 23:52:08 +0000 (Wed, 22 Jul 2009) Log Message: ----------- JSR 223: standardize argument naming. Modified Paths: -------------- branches/jsr223/src/org/python/jsr223/PyScriptEngine.java Modified: branches/jsr223/src/org/python/jsr223/PyScriptEngine.java =================================================================== --- branches/jsr223/src/org/python/jsr223/PyScriptEngine.java 2009-07-22 23:52:00 UTC (rev 6561) +++ branches/jsr223/src/org/python/jsr223/PyScriptEngine.java 2009-07-22 23:52:08 UTC (rev 6562) @@ -104,11 +104,11 @@ } } - public <T> T getInterface(Class<T> clasz) { + public <T> T getInterface(Class<T> clazz) { throw new UnsupportedOperationException("Not supported yet."); } - public <T> T getInterface(Object thiz, Class<T> clasz) { + public <T> T getInterface(Object thiz, Class<T> clazz) { throw new UnsupportedOperationException("Not supported yet."); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |