src/main/java/org/apache/openwhisk/intellij/common/whisk/service/WhiskActionService.java [119:125]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        String authorization = whiskAuth.getBasicAuthHeader();

        String result = Request.Delete(endpoint)
                .setHeader(HttpHeaders.AUTHORIZATION, authorization)
                .execute()
                .returnContent()
                .asString(UTF_8);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/openwhisk/intellij/common/whisk/service/WhiskTriggerService.java [92:98]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        String authorization = whiskAuth.getBasicAuthHeader();

        String result = Request.Delete(endpoint)
                .setHeader(HttpHeaders.AUTHORIZATION, authorization)
                .execute()
                .returnContent()
                .asString(UTF_8);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



