Compare commits

..

No commits in common. "0ee16028d769e29972f17c9bf68dbe2a151b0db8" and "688478cf801857b5b99be34362dee535d9f94482" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ public class ExampleActor extends AbstractBehavior<ExampleActor.Message> {
private ExampleActor(ActorContext<Message> context, String name) {
super(context);
this.name = "test";
this.name = name;
}
@Override

View File

@ -1,4 +1,4 @@
package com.example;
package de.tudortmund.cs.mnp.project2;
import java.util.Random;