Skip to content

Commit

Permalink
Make fields final
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanne committed Oct 18, 2018
1 parent c56b8ab commit c107579
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/jboss/jandex/DotName.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ public final class DotName implements Comparable<DotName> {
private final DotName prefix;
private final String local;
private int hash;
private boolean componentized = false;
private boolean innerClass = false;
private final boolean componentized;
private final boolean innerClass;

static {
JAVA_NAME = new DotName(null, "java", true, false);
Expand Down

0 comments on commit c107579

Please sign in to comment.