removed dead code

This commit is contained in:
Timo Bejan 2021-11-10 09:48:25 +02:00
parent 83e9f53940
commit fc6e5a3fce
2 changed files with 1 additions and 7 deletions

View File

@ -79,7 +79,7 @@ export class AnnotationWrapper {
}
get isSuperTypeBasedColor() {
return this.isSkipped || this.isSuggestion || this.isReadyForAnalysis || this.isDeclinedSuggestion;
return this.isSkipped || this.isSuggestion || this.isDeclinedSuggestion;
}
get isSkipped() {
@ -117,10 +117,6 @@ export class AnnotationWrapper {
return this.superType === 'declined-suggestion';
}
get isReadyForAnalysis() {
return false;
}
get isApproved() {
return this.status === 'APPROVED';
}

View File

@ -36,8 +36,6 @@ export class TypeAnnotationIconComponent implements OnChanges {
? 'S'
: this.annotation.isSkipped
? 'S'
: this.annotation.isReadyForAnalysis
? 'A'
: this.annotation.type[0].toUpperCase();
}
}