Merge pull request #2031 from akka/wip-3887-activator-cc0-license-patriknw

=sam #3887 Public domain license for activator templates
This commit is contained in:
Patrik Nordwall 2014-02-21 15:35:53 +01:00
commit 24688cc864
71 changed files with 1799 additions and 261 deletions

View file

@ -17,7 +17,7 @@ object MyActor {
class MyActor extends Actor {
import MyActor._
def receive = {
case message: Message message match {
case message: Message => message match {
case BarMessage(bar) => sender ! BazMessage("Got " + bar)
// warning here:
// "match may not be exhaustive. It would fail on the following input: FooMessage(_)"