blob: 36b3d4fd14ae58c747486dd8b8e3f2297be87782 [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'
: '';