blob: 4a47471e0462087786f5bf474a88a54d59bba8d1 [file] [log] [blame]
>>>
String type = status == 'OK'
? 'notices'
: status == 'NO' ? 'warnings' : status == 'BAD' ? 'errors' : '';
<<<
String type = status == 'OK'
? 'notices'
: status == 'NO'
? 'warnings'
: status == 'BAD'
? 'errors'
: '';