-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
47 additions
and
23 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
...lsverifier-16/src/main/java/nl/jqno/equalsverifier/internal/reflection/RecordsHelper.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package nl.jqno.equalsverifier.internal.reflection; | ||
|
||
public final class RecordsHelper { | ||
|
||
private RecordsHelper() {} | ||
|
||
public static boolean isRecord(Class<?> type) { | ||
return type.isRecord(); | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
...fier-17/src/main/java/nl/jqno/equalsverifier/internal/reflection/SealedClassesHelper.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package nl.jqno.equalsverifier.internal.reflection; | ||
|
||
public final class SealedClassesHelper { | ||
|
||
private SealedClassesHelper() {} | ||
|
||
public static boolean isSealed(Class<?> type) { | ||
return type.isSealed(); | ||
} | ||
} |
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
10 changes: 10 additions & 0 deletions
10
...verifier-core/src/main/java/nl/jqno/equalsverifier/internal/reflection/RecordsHelper.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package nl.jqno.equalsverifier.internal.reflection; | ||
|
||
public final class RecordsHelper { | ||
|
||
private RecordsHelper() {} | ||
|
||
public static boolean isRecord(Class<?> type) { | ||
return false; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
...er-core/src/main/java/nl/jqno/equalsverifier/internal/reflection/SealedClassesHelper.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package nl.jqno.equalsverifier.internal.reflection; | ||
|
||
public final class SealedClassesHelper { | ||
|
||
private SealedClassesHelper() {} | ||
|
||
public static boolean isSealed(Class<?> type) { | ||
return false; | ||
} | ||
} |
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