Skip to content

Commit

Permalink
make the VoidType.VOID constant public
Browse files Browse the repository at this point in the history
  • Loading branch information
Ladicek committed Apr 12, 2023
1 parent 13425fa commit ca36e1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/jboss/jandex/VoidType.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @author Jason T. Greene
*/
public class VoidType extends Type {
static final VoidType VOID = new VoidType(null);
public static final VoidType VOID = new VoidType(null);

private VoidType(AnnotationInstance[] annotations) {
super(new DotName(null, "void", true, false), annotations);
Expand Down

0 comments on commit ca36e1d

Please sign in to comment.