Update Custom-Base-Entity.md authored by Ticxo's avatar Ticxo
...@@ -3,15 +3,15 @@ complex than the default `Dummy`. You can wrap your custom target with `BaseEnti ...@@ -3,15 +3,15 @@ complex than the default `Dummy`. You can wrap your custom target with `BaseEnti
```java ```java
public class CustomBaseEntity implements BaseEntity<CustomTarget> { public class CustomBaseEntity implements BaseEntity<CustomTarget> {
@Getter private final CustomTarget original; @Getter private final CustomTarget original;
public CustomBaseEntity(CustomTarget original) { public CustomBaseEntity(CustomTarget original) {
this.original = original; this.original = original;
} }
// Implement the rest of the methods // Implement the rest of the methods
} }
``` ```
... ...
......