@@ -129,7 +129,6 @@ public class AppSecRequestContext implements DataBundle, Closeable {
129129 private volatile int raspInternalErrors ;
130130 private volatile int raspInvalidObjectErrors ;
131131 private volatile int raspInvalidArgumentErrors ;
132- private volatile int raspRuleSkipped ;
133132 private volatile int wafInternalErrors ;
134133 private volatile int wafInvalidObjectErrors ;
135134 private volatile int wafInvalidArgumentErrors ;
@@ -160,8 +159,6 @@ public class AppSecRequestContext implements DataBundle, Closeable {
160159 RASP_INVALID_ARGUMENT_ERRORS_UPDATER =
161160 AtomicIntegerFieldUpdater .newUpdater (
162161 AppSecRequestContext .class , "raspInvalidArgumentErrors" );
163- private static final AtomicIntegerFieldUpdater <AppSecRequestContext > RASP_RULE_SKIPPED_UPDATER =
164- AtomicIntegerFieldUpdater .newUpdater (AppSecRequestContext .class , "raspRuleSkipped" );
165162
166163 private static final AtomicIntegerFieldUpdater <AppSecRequestContext > WAF_INTERNAL_ERRORS_UPDATER =
167164 AtomicIntegerFieldUpdater .newUpdater (AppSecRequestContext .class , "wafInternalErrors" );
@@ -223,10 +220,6 @@ public void increaseRaspTimeouts() {
223220 RASP_TIMEOUTS_UPDATER .incrementAndGet (this );
224221 }
225222
226- public void increaseRuleSkipped () {
227- RASP_RULE_SKIPPED_UPDATER .incrementAndGet (this );
228- }
229-
230223 public void increaseRaspErrorCode (int code ) {
231224 switch (code ) {
232225 case DD_WAF_RUN_INTERNAL_ERROR :
@@ -267,10 +260,6 @@ public int getRaspTimeouts() {
267260 return raspTimeouts ;
268261 }
269262
270- public int getRaspRuleSkipped () {
271- return raspRuleSkipped ;
272- }
273-
274263 public int getRaspError (int code ) {
275264 switch (code ) {
276265 case DD_WAF_RUN_INTERNAL_ERROR :
0 commit comments