Possible Duplicate:
How do I disambiguate in Scala between methods with vararg and without
I am currently porting part of an application to scala and it uses the Oval library. The method is question is the Validator.validate method. It has two signatures:
List<ConstraintViolation> validate(Object validatedObject)
List<ConstraintViolation> validate(Object validatedObject, String... profiles)
The scala code looks generally like this:
def validate(toValidate: AnyRef) = {
val validator = createValidator
validator.validate(toValidate)
}
And the error message:
error: ambiguous reference to overloaded definition,
[INFO] both method validate in class Validator of type (x$1: Any,x$2: <repeated...>[java.lang.String])java.util.List[net.sf.oval.ConstraintViolation]
[INFO] and method validate in class Validator of type (x$1: Any)java.util.List[net.sf.oval.ConstraintViolation]
[INFO] match argument types (AnyRef)
[INFO] this.validator.validate(toValidate)
How can I get this be be unambiguous?