Remove inapplicable example for enforcer / dropper sampler in LAL doc (#8574)

diff --git a/docs/en/concepts-and-designs/lal.md b/docs/en/concepts-and-designs/lal.md
index 65ef65c..6032a47 100644
--- a/docs/en/concepts-and-designs/lal.md
+++ b/docs/en/concepts-and-designs/lal.md
@@ -336,21 +336,3 @@
     }
 }
 ```
-
-You can use `enforcer` and `dropper` to simulate a probabilistic sampler like this.
-
-```groovy
-filter {
-    // ... parser
-
-    sink {
-        sampler { // simulate a probabilistic sampler with sampler rate 30% (not accurate though)
-            if (Math.abs(Math.random()) > 0.3) {
-                enforcer {}
-            } else {
-                dropper {}
-            }
-        }
-    }
-}
-```