Hi
When I checkout the code it does not compile because there seems a
problem in the file encoding.
Affected: => seems to be ⇒, shows as ⇒
Probably same issue for <-
Example (Eclipse, cp1252):
protected def handleGeneratedKeys[G](
token: Token[G], genKeyHandler: G ⇒ Unit,
rs: ResultSet, expectedRows: Int) {
val extractor: RowExtractor[G] = token.extractor match {
case re: RowExtractor[_] ⇒ re
case qe ⇒ throw new ConfigurationException("Statement '%s'
needs a %s, not: %s".format(
token.id.name,
classOf[RowExtractor[_]].getSimpleName, qe.getClass.getName))
}
Changing to utf-8 or ISO-8859-1 doesn't help.
Ideas?
Andreas