From: <fwi...@us...> - 2009-02-16 15:41:52
|
Revision: 6036 http://jython.svn.sourceforge.net/jython/?rev=6036&view=rev Author: fwierzbicki Date: 2009-02-16 15:41:50 +0000 (Mon, 16 Feb 2009) Log Message: ----------- Useless double assignment. Modified Paths: -------------- trunk/jython/src/org/python/core/PySequence.java Modified: trunk/jython/src/org/python/core/PySequence.java =================================================================== --- trunk/jython/src/org/python/core/PySequence.java 2009-02-15 23:27:44 UTC (rev 6035) +++ trunk/jython/src/org/python/core/PySequence.java 2009-02-16 15:41:50 UTC (rev 6036) @@ -249,7 +249,7 @@ protected int boundToSequence(int index) { int length = __len__(); if(index < 0) { - index = index += length; + index += length; if(index < 0) { index = 0; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |