removed dead code
This commit is contained in:
parent
83e9f53940
commit
fc6e5a3fce
@ -79,7 +79,7 @@ export class AnnotationWrapper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
get isSuperTypeBasedColor() {
|
get isSuperTypeBasedColor() {
|
||||||
return this.isSkipped || this.isSuggestion || this.isReadyForAnalysis || this.isDeclinedSuggestion;
|
return this.isSkipped || this.isSuggestion || this.isDeclinedSuggestion;
|
||||||
}
|
}
|
||||||
|
|
||||||
get isSkipped() {
|
get isSkipped() {
|
||||||
@ -117,10 +117,6 @@ export class AnnotationWrapper {
|
|||||||
return this.superType === 'declined-suggestion';
|
return this.superType === 'declined-suggestion';
|
||||||
}
|
}
|
||||||
|
|
||||||
get isReadyForAnalysis() {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
get isApproved() {
|
get isApproved() {
|
||||||
return this.status === 'APPROVED';
|
return this.status === 'APPROVED';
|
||||||
}
|
}
|
||||||
|
|||||||
@ -36,8 +36,6 @@ export class TypeAnnotationIconComponent implements OnChanges {
|
|||||||
? 'S'
|
? 'S'
|
||||||
: this.annotation.isSkipped
|
: this.annotation.isSkipped
|
||||||
? 'S'
|
? 'S'
|
||||||
: this.annotation.isReadyForAnalysis
|
|
||||||
? 'A'
|
|
||||||
: this.annotation.type[0].toUpperCase();
|
: this.annotation.type[0].toUpperCase();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user