From 64443afcb9de2d2c188ec95eea16441c3d6d7105 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ilkka=20Sepp=C3=A4l=C3=A4?= Date: Sun, 26 May 2024 13:59:30 +0300 Subject: [PATCH] docs: update marker --- marker/README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/marker/README.md b/marker/README.md index 512b921bc..627c7b83f 100644 --- a/marker/README.md +++ b/marker/README.md @@ -99,10 +99,6 @@ public class App { In this way, the Marker Interface pattern allows us to associate metadata (in this case, special permissions) with a class in a type-safe manner. -## Class diagram - -![Marker Interface](./etc/MarkerDiagram.png "Marker Interface") - ## Applicability Marker interfaces are applicable in scenarios where you want to impose a special behavior or capability on a class, but don't want to force the class to define specific methods. This pattern is commonly used to indicate that a class conforms to a particular contract without needing to implement methods.