src/share/classes/sun/reflect/generics/tree/VoidDescriptor.java

Print this page

        

@@ -28,11 +28,11 @@
 import sun.reflect.generics.visitor.TypeTreeVisitor;
 
 
 /** AST that represents the pseudo-type void. */
 public class VoidDescriptor implements ReturnType {
-    private static VoidDescriptor singleton = new VoidDescriptor();
+    private static final VoidDescriptor singleton = new VoidDescriptor();
 
     private VoidDescriptor(){}
 
     public static VoidDescriptor make() {return singleton;}