From 848534a94f28c1e9d27779a9c985a2c956730973 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E6=B6=9B?= Date: Thu, 20 May 2021 14:53:49 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E6=94=B9=E4=B8=80=E4=BA=9B?= =?UTF-8?q?=E9=94=99=E5=AD=97=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/_posts/quick-start-akka.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_posts/quick-start-akka.md b/source/_posts/quick-start-akka.md index bc8a2f0..0aa61b6 100644 --- a/source/_posts/quick-start-akka.md +++ b/source/_posts/quick-start-akka.md @@ -47,7 +47,7 @@ public interface Command {} public class Request implements Command { private T payload; - private ActorOf sender; + private ActorRef sender; // getter和setter先省略了 }