Skip to content

Commit c41676a

Browse files
committed
update query message to incoude extensibleType
1 parent 0291558 commit c41676a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

java/ql/automodel/src/AutomodelApplicationModeExtractNegativeExamples.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ where
6363
) and
6464
message = characteristic
6565
select endpoint.asNode(),
66-
message + "\nrelated locations: $@, $@, $@." + "\nmetadata: $@, $@, $@, $@, $@, $@, $@, $@.", //
66+
message + "\nrelated locations: $@, $@, $@." + "\nmetadata: $@, $@, $@, $@, $@, $@, $@, $@, $@.", //
6767
CharacteristicsImpl::getRelatedLocationOrCandidate(endpoint, CallContext()), "CallContext", //
6868
CharacteristicsImpl::getRelatedLocationOrCandidate(endpoint, MethodDoc()), "MethodDoc", //
6969
CharacteristicsImpl::getRelatedLocationOrCandidate(endpoint, ClassDoc()), "ClassDoc", //

java/ql/automodel/src/AutomodelApplicationModeExtractPositiveExamples.ql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ where
2424
CharacteristicsImpl::isKnownAs(endpoint, endpointType, _) and
2525
exists(CharacteristicsImpl::getRelatedLocationOrCandidate(endpoint, CallContext()))
2626
select endpoint.asNode(),
27-
endpointType + "\nrelated locations: $@, $@, $@." + "\nmetadata: $@, $@, $@, $@, $@, $@, $@, $@.", //
27+
endpointType + "\nrelated locations: $@, $@, $@." +
28+
"\nmetadata: $@, $@, $@, $@, $@, $@, $@, $@, $@.", //
2829
CharacteristicsImpl::getRelatedLocationOrCandidate(endpoint, CallContext()), "CallContext", //
2930
CharacteristicsImpl::getRelatedLocationOrCandidate(endpoint, MethodDoc()), "MethodDoc", //
3031
CharacteristicsImpl::getRelatedLocationOrCandidate(endpoint, ClassDoc()), "ClassDoc", //

0 commit comments

Comments
 (0)