editor_events.md: Make extension classes non-public and final

This commit is contained in:
Karol Lewandowski 2023-10-26 13:54:35 +02:00
parent 230a2f8eac
commit 94a465e143

View File

@ -124,7 +124,7 @@ As explained in [Working with Text](working_with_text.md#safely-replacing-select
So although a method on the `Document` interface does the `String` insertion, the write action ensures a stable context.
```java
class MyTypedHandler implements TypedActionHandler {
final class MyTypedHandler implements TypedActionHandler {
@Override
public void execute(@NotNull Editor editor,
char c,