mirror of
https://github.com/github/codeql.git
synced 2026-04-26 01:05:15 +02:00
Java: Remove unnecessary columns
This commit is contained in:
@@ -23,5 +23,5 @@ where
|
||||
usage = aUsage(endpoint) and
|
||||
type = supportedType(endpoint) and
|
||||
classification = usageClassification(usage)
|
||||
select usage, apiName, supported.toString(), "supported", endpoint.jarContainer(),
|
||||
endpoint.jarVersion(), type, "type", classification, "classification"
|
||||
select usage, apiName, supported, endpoint.jarContainer(), endpoint.jarVersion(), type,
|
||||
classification
|
||||
|
||||
@@ -15,6 +15,5 @@ where
|
||||
apiName = endpoint.getApiName() and
|
||||
supported = isSupported(endpoint) and
|
||||
type = supportedType(endpoint)
|
||||
select endpoint, apiName, supported.toString(), "supported",
|
||||
endpoint.getCompilationUnit().getParentContainer().getBaseName(), "library", type, "type",
|
||||
"unknown", "classification"
|
||||
select endpoint, apiName, supported,
|
||||
endpoint.getCompilationUnit().getParentContainer().getBaseName(), type
|
||||
|
||||
Reference in New Issue
Block a user