removed dead code
This commit is contained in:
parent
83e9f53940
commit
fc6e5a3fce
@ -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';
|
||||
}
|
||||
|
||||
@ -36,8 +36,6 @@ export class TypeAnnotationIconComponent implements OnChanges {
|
||||
? 'S'
|
||||
: this.annotation.isSkipped
|
||||
? 'S'
|
||||
: this.annotation.isReadyForAnalysis
|
||||
? 'A'
|
||||
: this.annotation.type[0].toUpperCase();
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user