File tree Expand file tree Collapse file tree
java/ql/src/utils/stub-generator Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -404,16 +404,16 @@ private string stubAnnotation(Annotation a) {
404404 else result = a .toString ( )
405405}
406406
407- private string stubAnnotiationSimpleValue ( Expr value ) {
407+ private string stubAnnotationSimpleValue ( Expr value ) {
408408 result = value .( FieldAccess ) .getField ( ) .getQualifiedName ( ) or
409409 result = value .( Literal ) .toString ( )
410410}
411411
412412private string stubAnnotationValue ( Expr value ) {
413- result = stubAnnotiationSimpleValue ( value )
413+ result = stubAnnotationSimpleValue ( value )
414414 or
415415 value instanceof ArrayInit and
416- result = "{" + concat ( stubAnnotiationSimpleValue ( value .( ArrayInit ) .getAnInit ( ) ) , "," ) + "}"
416+ result = "{" + concat ( stubAnnotationSimpleValue ( value .( ArrayInit ) .getAnInit ( ) ) , "," ) + "}"
417417}
418418
419419bindingset [ s]
You can’t perform that action at this time.
0 commit comments