From 2aa4651534d68ca2cd58d2263b7ea2e01134f6da Mon Sep 17 00:00:00 2001 From: tiferet Date: Fri, 4 Nov 2022 06:48:36 -0700 Subject: [PATCH] Remove predicates not yet used from the current PR --- .../adaptivethreatmodeling/EndpointCharacteristics.qll | 6 ------ 1 file changed, 6 deletions(-) diff --git a/javascript/ql/experimental/adaptivethreatmodeling/lib/experimental/adaptivethreatmodeling/EndpointCharacteristics.qll b/javascript/ql/experimental/adaptivethreatmodeling/lib/experimental/adaptivethreatmodeling/EndpointCharacteristics.qll index 144d4c88b56..3bd543e1ab7 100644 --- a/javascript/ql/experimental/adaptivethreatmodeling/lib/experimental/adaptivethreatmodeling/EndpointCharacteristics.qll +++ b/javascript/ql/experimental/adaptivethreatmodeling/lib/experimental/adaptivethreatmodeling/EndpointCharacteristics.qll @@ -21,12 +21,6 @@ abstract class EndpointCharacteristic extends string { bindingset[this] EndpointCharacteristic() { any() } - /** Indicators with confidence at or above this threshold are considered to be high-confidence indicators. */ - float getHighConfidenceThreshold() { result = 0.8 } - - /** Indicators with confidence at or above this threshold are considered to be medium-confidence indicators. */ - float getMediumConfidenceThreshold() { result = 0.5 } - /** The logic to identify which endpoints have this characteristic. */ abstract predicate getEndpoints(DataFlow::Node n);