This commit is contained in:
arsdragonfly 2019-09-27 20:02:51 -04:00
parent 945679e42f
commit 17d1405a8b

View file

@ -119,9 +119,7 @@ function isDeprecated(rd: RustDiagnostic): boolean {
return false;
}
return [
'deprecated',
].includes(rd.code.code);
return ['deprecated'].includes(rd.code.code);
}
/**