Storyyeller / Krakatau

Java decompiler, assembler, and disassembler
GNU General Public License v3.0
1.95k stars 219 forks source link

wrong access order #147

Closed GraxCode closed 6 years ago

GraxCode commented 6 years ago

Krakatau decompiles access as following:

abstract public class final public static int

access is normally ordered as

public
protected
private
abstract
static
final
transient
volatile
synchronized
native
strictfp
Storyyeller commented 6 years ago

The order of the flags is arbitrary, and has no effect on code behavior, so there isn't a compelling reason to prefer one order over another.