We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51e8dfe commit a090ebaCopy full SHA for a090eba
jsonb-generator/src/main/java/io/avaje/jsonb/generator/AliasReader.java
@@ -6,11 +6,12 @@
6
import javax.lang.model.element.AnnotationMirror;
7
import javax.lang.model.element.Element;
8
9
-class AliasReader {
+final class AliasReader {
10
+ private AliasReader() {}
11
12
private static final String JSON_ALIAS = "io.avaje.jsonb.Json.JsonAlias";
13
- /** Read the Json.Property annotation using annotation mirrors. */
14
+ /** Read the Json.Alias annotation using annotation mirrors. */
15
static List<String> getAliases(Element element) {
16
for (final AnnotationMirror mirror : element.getAnnotationMirrors()) {
17
if (JSON_ALIAS.equals(mirror.getAnnotationType().toString())) {
0 commit comments