(annotations whisk.KeyValueArr)
| 805 | } |
| 806 | |
| 807 | func deleteWebAnnotations(annotations whisk.KeyValueArr) whisk.KeyValueArr { |
| 808 | annotations = deleteWebAnnotationKeys(annotations) |
| 809 | annotations = addKeyValue(WEB_EXPORT_ANNOT, false, annotations) |
| 810 | annotations = addKeyValue(RAW_HTTP_ANNOT, false, annotations) |
| 811 | annotations = addKeyValue(FINAL_ANNOT, false, annotations) |
| 812 | |
| 813 | return annotations |
| 814 | } |
| 815 | |
| 816 | func addRawAnnotations(annotations whisk.KeyValueArr) whisk.KeyValueArr { |
| 817 | annotations = deleteWebAnnotationKeys(annotations) |
nothing calls this directly
no test coverage detected