[Solved] Why do I get a $ sign in decompiled java classes full with errors? [closed]

What you’re seeing is Java’s internal representation of the anonymous inner classes. Java implements these by creating classes with generated names, which — like all inner classes — are based on adding $ and a suffix to the name of the containing class. (There are some other changes made to support the inner class’s ability … Read more