diff --git a/core/descriptors/src/org/jetbrains/jet/lang/resolve/constants/IntegerValueConstant.java b/core/descriptors/src/org/jetbrains/jet/lang/resolve/constants/IntegerValueConstant.java index a2d34cf91af..9fa62eb3f56 100644 --- a/core/descriptors/src/org/jetbrains/jet/lang/resolve/constants/IntegerValueConstant.java +++ b/core/descriptors/src/org/jetbrains/jet/lang/resolve/constants/IntegerValueConstant.java @@ -18,7 +18,7 @@ package org.jetbrains.jet.lang.resolve.constants; public abstract class IntegerValueConstant extends CompileTimeConstant { - protected IntegerValueConstant(T value, boolean canBeUsedInAnnotations, boolean pure, boolean usesVaraiableAsConstant) { - super(value, canBeUsedInAnnotations, pure, usesVaraiableAsConstant); + protected IntegerValueConstant(T value, boolean canBeUsedInAnnotations, boolean pure, boolean usesVariableAsConstant) { + super(value, canBeUsedInAnnotations, pure, usesVariableAsConstant); } }