forked from lightbend-labs/mima
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Made synthetic classes extending java.lang.Object. Fix lightbend-labs#74
All classes extends `java.lang.Object`, synthetic (i.e., compiler generated) classes being no exception. Furthermore, implemented typesafe equality (`===`) for comparing `ClassInfo` instances, since the existing calls to `==` where only comparing references (since `ClassInfo` does not implement `equals`).
- Loading branch information
Showing
2 changed files
with
14 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Actually, I don't like this. Would make a lot more sense to override
superClass
. I'll have another look at it.