From: <otm...@us...> - 2009-05-07 05:57:42
|
Revision: 6315 http://jython.svn.sourceforge.net/jython/?rev=6315&view=rev Author: otmarhumbel Date: 2009-05-07 05:57:41 +0000 (Thu, 07 May 2009) Log Message: ----------- suppress another fallthrough warning Modified Paths: -------------- trunk/jython/src/com/ziclix/python/sql/handler/InformixDataHandler.java Modified: trunk/jython/src/com/ziclix/python/sql/handler/InformixDataHandler.java =================================================================== --- trunk/jython/src/com/ziclix/python/sql/handler/InformixDataHandler.java 2009-05-07 04:15:11 UTC (rev 6314) +++ trunk/jython/src/com/ziclix/python/sql/handler/InformixDataHandler.java 2009-05-07 05:57:41 UTC (rev 6315) @@ -124,6 +124,7 @@ * @return the mapped Python object * @throws SQLException thrown for a sql exception */ + @SuppressWarnings("fallthrough") public PyObject getPyObject(ResultSet set, int col, int type) throws SQLException { PyObject obj = Py.None; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |