mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
C#: Remove unnecessary columns
This commit is contained in:
@@ -1,8 +1,7 @@
|
||||
/**
|
||||
* @name Fetch endpoints for use in the model editor (application mode)
|
||||
* @description A list of 3rd party endpoints (methods and attributes) used in the codebase. Excludes test and generated code.
|
||||
* @kind problem
|
||||
* @problem.severity recommendation
|
||||
* @kind table
|
||||
* @id csharp/utils/modeleditor/application-mode-endpoints
|
||||
* @tags modeleditor endpoints application-mode
|
||||
*/
|
||||
@@ -22,5 +21,4 @@ where
|
||||
usage = aUsage(endpoint) and
|
||||
type = supportedType(endpoint) and
|
||||
classification = methodClassification(usage)
|
||||
select usage, apiName, supported.toString(), "supported", endpoint.dllName(), endpoint.dllVersion(),
|
||||
type, "type", classification, "classification"
|
||||
select usage, apiName, supported, endpoint.dllName(), endpoint.dllVersion(), type, classification
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
/**
|
||||
* @name Fetch endpoints for use in the model editor (framework mode)
|
||||
* @description A list of endpoints accessible (methods and attributes) for consumers of the library. Excludes test and generated code.
|
||||
* @kind problem
|
||||
* @problem.severity recommendation
|
||||
* @kind table
|
||||
* @id csharp/utils/modeleditor/framework-mode-endpoints
|
||||
* @tags modeleditor endpoints framework-mode
|
||||
*/
|
||||
@@ -16,5 +15,4 @@ where
|
||||
apiName = endpoint.getApiName() and
|
||||
supported = isSupported(endpoint) and
|
||||
type = supportedType(endpoint)
|
||||
select endpoint, apiName, supported.toString(), "supported", endpoint.getFile().getBaseName(),
|
||||
"library", type, "type", "unknown", "classification"
|
||||
select endpoint, apiName, supported, endpoint.getFile().getBaseName(), type
|
||||
|
||||
Reference in New Issue
Block a user