Skip to content

Commit 1287d25

Browse files
authored
correct indentation
1 parent d531c43 commit 1287d25

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

localization/de/actor-model/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ ohne dabei anderen Mitarbeitern in die Quere zu kommen.
6363
```java
6464
public abstract class Actor implements Runnable {
6565

66-
@Setter @Getter private String actorId;
66+
@Setter
67+
@Getter
68+
private String actorId;
6769
private final BlockingQueue<Message> mailbox = new LinkedBlockingQueue<>();
6870
private volatile boolean active = true;
6971

@@ -124,7 +126,7 @@ public class ActorSystem {
124126
```java
125127
public class App {
126128
public static void main(String[] args) {
127-
ActorSystem system = new ActorSystem();
129+
ActorSystem system = new ActorSystem();
128130
Actor srijan = new ExampleActor(system);
129131
Actor ansh = new ExampleActor2(system);
130132

0 commit comments

Comments
 (0)