java2python icon indicating copy to clipboard operation
java2python copied to clipboard

bug: string.length() - 1 ==> 1 - len(string)

Open mw66 opened this issue 8 years ago • 0 comments

convert if ('%' == pct.charAt(pct.length() - 1)) {} into: if '%' == pct.charAt(1 - len(pct)):

mw66 avatar Nov 01 '17 04:11 mw66