| author | Tomas Zeman <tzeman@volny.cz> |
| Wed, 17 Aug 2011 08:47:55 +0200 | |
| changeset 19 | 5492a4e4e60d |
| parent 18 | 14a648a3676f |
| child 20 | 22424e6508cd |
--- a/src/main/scala/net/tz/lift/boot/ProtoBoot.scala Thu May 19 14:33:26 2011 +0200 +++ b/src/main/scala/net/tz/lift/boot/ProtoBoot.scala Wed Aug 17 08:47:55 2011 +0200 @@ -30,7 +30,7 @@ */ class ProtoBoot extends Logger { - def boot = { + def boot: Unit = { /* DB stuff */ /* S.addAround(DB.buildLoanWrapper()) @@ -76,6 +76,8 @@ /* Http conf */ LiftRules.logServiceRequestTiming = false LiftRules.early.append(_.setCharacterEncoding("UTF-8")) + + () } }