File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
java/ql/src/utils/stub-generator Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -404,16 +404,16 @@ private string stubAnnotation(Annotation a) {
404
404
else result = a .toString ( )
405
405
}
406
406
407
- private string stubAnnotiationSimpleValue ( Expr value ) {
407
+ private string stubAnnotationSimpleValue ( Expr value ) {
408
408
result = value .( FieldAccess ) .getField ( ) .getQualifiedName ( ) or
409
409
result = value .( Literal ) .toString ( )
410
410
}
411
411
412
412
private string stubAnnotationValue ( Expr value ) {
413
- result = stubAnnotiationSimpleValue ( value )
413
+ result = stubAnnotationSimpleValue ( value )
414
414
or
415
415
value instanceof ArrayInit and
416
- result = "{" + concat ( stubAnnotiationSimpleValue ( value .( ArrayInit ) .getAnInit ( ) ) , "," ) + "}"
416
+ result = "{" + concat ( stubAnnotationSimpleValue ( value .( ArrayInit ) .getAnInit ( ) ) , "," ) + "}"
417
417
}
418
418
419
419
bindingset [ s]
You can’t perform that action at this time.
0 commit comments