removed calls to deprecated Props constructor in java code
This commit is contained in:
parent
bdfc1e4bf9
commit
308428e7bc
14 changed files with 28 additions and 68 deletions
|
|
@ -6,7 +6,7 @@ package akka.actor;
|
|||
|
||||
public class NonPublicClass {
|
||||
public static Props createProps() {
|
||||
return new Props(MyNonPublicActorClass.class);
|
||||
return Props.create(MyNonPublicActorClass.class);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue