I might be wrong, but wouldn't that `private <i...
# random
g
I might be wrong, but wouldn't that
private <init>()V
be the private constructor? Why doesn't it show up on the java decompiled version?
g
Because decompiled java is not accurate and in many cases (not in this one tho) it’s even impossible to restore source
g
Yeah, I see... Given that the block is basically
Copy code
private MyObj() {
    super();
}
It's pretty curious it fails at that. I think this should be noted since many people will refer to how objects work using the wrong decompiled version (which is what led me to do it manually in the first place)