Using JetValueParameterAnnotation factory method instead of constructor.

Made constructor private.
This commit is contained in:
Evgeny Gerashchenko
2012-09-27 17:53:09 +04:00
parent 0012dd49da
commit 0d7544c6a9
2 changed files with 7 additions and 15 deletions
@@ -38,7 +38,7 @@ public class JetValueParameterAnnotation extends PsiAnnotationWrapper {
private boolean receiver;
private boolean hasDefaultValue;
public JetValueParameterAnnotation(@Nullable PsiAnnotation psiAnnotation) {
private JetValueParameterAnnotation(@Nullable PsiAnnotation psiAnnotation) {
super(psiAnnotation);
}