You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sometimes decompiler code always in one line ,it makes not comfortable to read code.
decompiler code like this:
/* 4576 */ private boolean isChangeTable() { return this.changeTable; }
the old version plugin can make this code in multi lines like this:
private boolean isChangeTable()
{
return this.changeTable;
}
The text was updated successfully, but these errors were encountered:
fealtyjay
changed the title
sometimes RC2 always decompiler code in one line
sometimes 2.0.0 version always decompiler code in one line
Sep 7, 2019
sometimes decompiler code always in one line ,it makes not comfortable to read code.
decompiler code like this:
/* 4576 */ private boolean isChangeTable() { return this.changeTable; }
the old version plugin can make this code in multi lines like this:
private boolean isChangeTable()
{
return this.changeTable;
}
The text was updated successfully, but these errors were encountered: