natural / java2python

Simple but effective library to translate Java source code to Python.
GNU Lesser General Public License v2.1
564 stars 243 forks source link

bug: string[string.length - 1] into string[len(string)] #53

Open mw66 opened 6 years ago

mw66 commented 6 years ago
    String pct = change[change.length - 1].trim();

into

            pct = change[len(change)].trim()